UnderPass

nmap 10.10.11.48 -sVC -A -p- --min-rate 10000

Port 22 and 80 open

Lets try UDP Port

nmap -sU --top-ports 10.10.11.48 --min-rate 10000

will try to browse the page

Web Portal Enumeration & Fuzzing

Dirsearch

dirsearch -u http://10.10.11.48/ -w /wordlist/directory-list-lowercase-2.3-small.txt -e php,txt,html,htm,asp,aspx -o results.txt

dirsearch -u "http://192.168.120.84/" -t 50

dirsearch -u http://10.10.11.48/ -w /wordlist/raft-small-files-lowercaase.txt -o results.txt

GoBuster

gobuster dir -w /usr/share/wordlists/dirb/big.txt -u http://10.10.11.48/ -t 100 -x .html,.txt,.php > gobustermanisbt.txt

Nothing we can do using web enumeration

Lets try snmp enumeration:

Last updated

Was this helpful?