// tag · 7 items
: Python
- blog
Triaging a Suspicious Indicator in One Command
A tool I built that takes one IP, domain, hash, or URL, checks it against a stack of OSINT sources at once, and hands back a single report with a …
- python projects
Collatz Conjecture in Python
The Collatz Conjecture, also known as the 3(x) + 1 conjecture, is a famous unsolved problem in mathematics. It proposes a sequence defined by the …
- python projects
Fibonacci Sequence in Python
The Fibonacci sequence is a fundamental mathematical sequence where each number is the sum of the two preceding ones, starting from 0 and 1. So, the …
- python projects
Goldbach Conjecture in Python
The Goldbach Conjecture is a famous unsolved problem in number theory that dates back to 1742. It was first proposed by the German mathematician …
- python projects
Password Checker in Python
The program defines a function, password_strength, that evaluates the strength of a provided password based on several criteria: length, presence of …
- python projects
Random Password Generator in Python
This program is a Random Password Generator designed to enhance online security. By specifying the desired password length, users can create strong …