- nmap
- Add
helpline.htb
to the hosts file so we can refer to the host by name$ echo "10.10.10.132 helpline.htb" >> /etc/hosts
-
Scan for ports and services
# Use nmap to find available TCP ports quickly $ helpline_tcp_ports=$( \ nmap helpline.htb \ -p- \ --min-rate=1000 \ --max-retries=2 \ -T4 \ -Pn \ -oA nmap-tcp-allports \ | grep ^[0-9] \ | cut -d '/' -f 1 \ | tr '\n' ',' \ | sed s/,$// \ ) # Scan found ports for services $ nmap helpline.htb \ -p ${helpline_tcp_ports} \ -sV \ -sC \ -T4 \ -Pn \ -oA nmap-tcp-foundports
-
Check found ports against the Vulners db/nse script
$ nmap helpline.htb \ -p ${helpline_tcp_ports} \ --script=vulners \ -Pn \ -A \ -T4 \ -oA nmap-tcp-foundports-vulners
-
________
Let's start by looking for interesting URL paths:
$