Comment on I found a weird IP address on my network that had transmitted an insanely small amount of data. I put the address in my browser and got this. what the heck am I looking at?
In case it helps your troubleshooting, ICMP (ping) is typically disabled by default on Windows.
Thanks. It is not responding to ping.
Your command needs to look something like this:
nmap -Pn -sVC -p- (IP) -o scan
-Pn skips the availability check per ping
-sVC performs a version and a script scan so you get more information
-p- scans ALL ports
-o puts out a file called scan.nmap
If you want you can share that output afterwards for further info.
RestrictedAccount@lemmy.world 4 weeks ago
Thanks. It is not responding to ping.
0xD@infosec.pub 4 weeks ago
Your command needs to look something like this:
nmap -Pn -sVC -p- (IP) -o scan
-Pn skips the availability check per ping
-sVC performs a version and a script scan so you get more information
-p- scans ALL ports
-o puts out a file called scan.nmap
If you want you can share that output afterwards for further info.