Enhance Your Online Security with Hardware Keys | Protect Against Cyber ThreatsApr 5, 2024·3 min read
🐍 How to Set Up a Python Virtual Environment (venv) on Windows, MacOS, and Linux (For Absolute Beginners)Goal: After this, you’ll know how to create an isolated space on your computer to safely install Python packages — without breaking your system. ➡️ What’s a Virtual Environment? Setting up a virtual environment might sound fancy, but it’s just a way...Jul 15, 2025·4 min read
Gobuster Cheat SheetSyntax: gobuster [Mode] [URL] [Wordlist] Example: gobuster dir -u http://example.com -w wordlist.txt Options/Flags: dir: Directory brute-force mode dns: DNS subdomain brute-force mode -u: Target URL -w: Wordlist for directory and file names -t...Oct 24, 2023·1 min read
Hydra Cheat SheetSyntax: hydra -l [Username] -P [Password File] [Target] [Service] [Options] Example: hydra -l admin -P passwords.txt 192.168.1.1 ssh Options/Flags: -l: Username to test -P: Password file -s: Service (e.g., ssh, http) -V: Show login attempts -t...Oct 24, 2023·1 min read
Nikto Cheat SheetIf you are looking for a more in-depth article about the usage of Nikto, see my blog about Nikto usage. Click Here Syntax: nikto -h [Target] [Options] Example: nikto -h http://example.com Options/Flags: -h: Target URL or IP address -id: Host aut...Oct 24, 2023·1 min read
Cybersecurity: Port Scanning with NmapSo, I just wrote an article about how super awesome RustScan is, and I thought I would provide some usage for Nmap. Nmap is still my go-to tool, and I use it by default. But you see, if you know me, you know I'm not content with just one tool in my a...Oct 24, 2023·3 min read
Cybersecurity: Port Scanning with RustScanYou know, in the realm of network reconnaissance and scanning, finding the right tool can be a game-changer, especially when versatility is a must. Now, my trusty companion in the world of network scanning has always been good ol' Nmap. It's reliable...Oct 23, 2023·6 min read
Web Vulnerability Scanning with Nikto: A Quick and Dirty GuideIn the chaotic landscape of digital security, tools are like stars in the sky. Choosing the best tool is something only you can decide. Having said that, I would like to present one for consideration: Nikto. If you're looking for a versatile web vuln...Oct 6, 2023·3 min read