rustscan
rustscan -a $ip -grustscan -a $ip -p $ports -- -sC -sV | tee scan.init
nmap
nmap -vv -Pn $ipnmap -vv -Pn -p $ports -A $ip
feroxbuster
feroxbuster -u http://$ipa -w $wordlist | tee fuzz.init
FFUF
ffuf -u http://$ip/FUZZ -w $wordlist | tee fuzz.init
firefox
- Analysis: Whatruns, Wappalyzer
/robots.txt,sitemap(.xml)
smb
enum4linux $ipa | tee enum4.txt# smb shares
Linux Enumeration
ls -la /homecat /etc/passwdcat /etc/crontabsudo -l# run sudo with?find / —perm 4000 2>/dev/null# find suidsfind / -user $user 2>/dev/null# find user filesfind / -name *id_rsa* 2>/dev/null# find files that match id_rsa
Thanks for reading