RestrictedAccount@lemmy.world to No Stupid Questions@lemmy.world · 1 month agoI 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?lemmy.worldimagemessage-square98fedilinkarrow-up10arrow-down10
arrow-up10arrow-down1imageI 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?lemmy.worldRestrictedAccount@lemmy.world to No Stupid Questions@lemmy.world · 1 month agomessage-square98fedilink
minus-square0xD@infosec.publinkfedilinkarrow-up0·edit-21 month agoYour 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. Edit: You can also try enumerating the directories on the server if you find no content. I can help you with that if you want.
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.
Edit: You can also try enumerating the directories on the server if you find no content. I can help you with that if you want.