[go: up one dir, main page]

0% found this document useful (0 votes)
96 views1 page

Nmap Commands

This document outlines various Nmap scanning commands, including ARP and UDP ping scans to detect hosts, TCP and UDP scans to detect open ports, an intense scan to discover OS and service details, and targeted scans to check specific ports or all ports on a system located at 192.168.1.26.

Uploaded by

bhumika.verma00
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
96 views1 page

Nmap Commands

This document outlines various Nmap scanning commands, including ARP and UDP ping scans to detect hosts, TCP and UDP scans to detect open ports, an intense scan to discover OS and service details, and targeted scans to check specific ports or all ports on a system located at 192.168.1.26.

Uploaded by

bhumika.verma00
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

NMAP Commands

ARP Ping Scan


nmap -sn -PR 192.168.1.26

UDP Ping Scan


nmap -sn -PU 192.168.1.26

TCP Connect Scan


nmap -sT 192.168.1.26

UDP Scan
nmap -sU 192.168.1.26

Intense Scan
nmap -v -A 192.168.1.26

Service Version
nmap -v -sV 192.168.1.26

Operating System
nmap -v -O 192.168.1.26

FInding open ports alone


nmap -PO 192.168.1.26

Scanning specific ports


nmap -p 22,80,3306 192.168.1.26

Scanning all ports


nmap -p- 192.168.1.26

You might also like