Difference between revisions of "Port Scan using nmap"

From Notes_Wiki
(Created page with "<yambe:breadcrumb self="Port Scan using nmap">Server VA-PT using Kali|Server VA-PT</yambe:breadcrumb> =Port Scan using nmap= To port scan a service via nmap use following ste...")
 
m
 
Line 1: Line 1:
<yambe:breadcrumb self="Port Scan using nmap">Server VA-PT using Kali|Server VA-PT</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[Kali Linux]] > [[Server VA-PT using Kali|Server VA-PT]] > [[Port Scan using nmap]]
=Port Scan using nmap=


To port scan a service via nmap use following steps:
To port scan a service via nmap use following steps:
Line 34: Line 33:




<yambe:breadcrumb self="Port Scan using nmap">Server VA-PT using Kali|Server VA-PT</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[Kali Linux]] > [[Server VA-PT using Kali|Server VA-PT]] > [[Port Scan using nmap]]

Latest revision as of 08:44, 6 April 2022

Home > CentOS > Kali Linux > Server VA-PT > Port Scan using nmap

To port scan a service via nmap use following steps:

  1. Login into Kali Linux
  2. Get root terminal (sudo su -)
  3. Run nmap on target on standard ports (approx 1000) use:
    nmap -v -A <FQDN-or-IP>
  4. To scan each and every port use:
    nmap -v -A -p1-65535 <FQDN-or-IP>
  5. To see more options type 'nmap' and press enter


Scan live hosts using nmap

If static IP addressing is used then we can scan for free IPs using:

  1. nmap -sn <patern>
    For example
    nmap -sn 192.168.29.*


Refer:



Home > CentOS > Kali Linux > Server VA-PT > Port Scan using nmap