Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.bytejmp.com/llms.txt

Use this file to discover all available pages before exploring further.

Service Detection

nmap -sV -sC -p 80,443 TARGET
curl -I http://TARGET
curl -Ik https://TARGET

Technology Fingerprinting

whatweb

whatweb http://TARGET

Wappalyzer

Browser extension — identifies CMS, frameworks, servers.

Headers

curl -I http://TARGET | grep -i "server\|x-powered-by\|x-aspnet"

Directory Busting

gobuster

gobuster dir -u http://TARGET -w /usr/share/wordlists/dirb/common.txt
gobuster dir -u http://TARGET -w /usr/share/seclists/Discovery/Web-Content/raft-large-words.txt -x php,html,txt,bak
FlagDescription
-xExtensions
-t 50Threads
-oOutput file
-kSkip TLS verification
-b 404,403Blacklist status codes

feroxbuster

feroxbuster -u http://TARGET -w /usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt -x php,html,txt

ffuf

ffuf -u http://TARGET/FUZZ -w /usr/share/seclists/Discovery/Web-Content/common.txt -mc 200,301,302

dirsearch

dirsearch -u http://TARGET -e php,html,txt

Vhost / Subdomain Discovery

ffuf -u http://TARGET -H "Host: FUZZ.target.com" -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-5000.txt -fs <default_size>
gobuster vhost -u http://TARGET -w /usr/share/seclists/Discovery/DNS/subdomains-top1million-5000.txt

Parameter Fuzzing

ffuf -u "http://TARGET/page?FUZZ=test" -w /usr/share/seclists/Discovery/Web-Content/burp-parameter-names.txt -mc 200

robots.txt / sitemap.xml

curl http://TARGET/robots.txt
curl http://TARGET/sitemap.xml

Source Code

curl http://TARGET | grep -i "comment\|password\|api\|key\|secret\|token"

.git Exposure

curl http://TARGET/.git/HEAD
# If 200 → dump with git-dumper
pip3 install git-dumper
git-dumper http://TARGET/.git/ output/

.env / Backup Files

curl http://TARGET/.env
curl http://TARGET/config.php.bak
curl http://TARGET/web.config

CMS Detection

WordPress

wpscan --url http://TARGET --enumerate u,p,t
wpscan --url http://TARGET -U admin -P /usr/share/wordlists/rockyou.txt

Joomla

joomscan -u http://TARGET

Drupal

droopescan scan drupal -u http://TARGET

NSE Scripts

nmap -p 80 --script http-enum TARGET
nmap -p 80 --script http-title TARGET
nmap -p 80 --script http-methods TARGET
nmap -p 80 --script http-vuln* TARGET
nmap -p 80 --script http-robots.txt TARGET
nmap -p 443 --script ssl-enum-ciphers TARGET

Quick Reference

CheckCommand
Fingerprintwhatweb http://TARGET
Directory bustgobuster dir -u http://TARGET -w list.txt
Vhost enumffuf -H "Host: FUZZ.target.com" -u http://TARGET
WordPress scanwpscan --url http://TARGET
Git dumpgit-dumper http://TARGET/.git/ output/