top of page
Search

Basics - How to use nmap

  • Admin
  • Sep 1, 2021
  • 1 min read

Updated: Apr 27, 2024



nmap -sC -sV IP

Use the switch -sC for Scripts

Use the switch -sV for Service Detection




If you get the error message : "hosts seems to be down" , use -Pn instead:

nmap -sC -Pn IP

If you want to scan all ports, from 1 to 65535, use -p-

nmap -p- -sV


If you want to check for potential vulnerabilities on 1 specific port (ex port 80), use:

nmap -p 80 --script vuln 10.129.215.99


 
 
 

Recent Posts

See All

©2025 by My Tech On IT

bottom of page