Course - Getting Started
Section - Public Exploits
Hi guys so trying to find the running services on ports using an NMAP scan
So i tried to run an NMAP scan using the following command
nmap 157.245.39.81
got back the following
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.04 seconds.
Tried the following command and got the following results
Sudo nmap 157.245.39.81
and got the following results
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.11 seconds
Tried this command with the -Pn and got this back in return
sudo nmap -Pn 157.245.39.81
Nmap scan report for 157.245.39.81
Host is up (0.0047s latency).
Not shown: 905 filtered tcp ports (no-response), 94 closed tcp ports (reset)
PORT STATE SERVICE
30718/tcp open unknown
So it can see the server is up but 94 ports closed and 905 are filterd ports.
I had come across this article and it said try a different port scanning technique
Tried
sudo nmap -sS 157.245.39.81
Same issue host seems down
Tried
sudo nmap -sU 157.245.39.81
Same issue host seems down
Tried
sudo nmap -sY 157.245.39.81
Same issue host seems down
Tried
sudo nmap -sN 157.245.39.81
Same issue host seems down
Tried
sudo nmap -sF 157.245.39.81
Same issue host seems down
Tried
sudo nmap -sX 157.245.39.81
Same issue host seems down
Tried the following
sudo nmap -sV -Pn 157.245.39.81
All 1000 scanned ports on 157.245.39.81 are in ignored states.
Not shown: 905 filtered tcp ports (no-response), 95 closed tcp ports (reset)
Tried
sudo nmap -sT 157.245.39.81
Same issue host seems down.
Tried
nmap -sV -sC -p- 157.245.39.81
Same issue host seems down.
Searched aroud the internet on how to use NMAP to scan ports that are being blocked or filtered.
Any help would be great on this one.
Kapz