0% found this document useful (0 votes)
5 views2 pages

44-TCP Null Scanning Lab

The document provides a guide on performing TCP NULL scans using the Nmap tool, detailing various command examples for different scanning purposes. It includes commands for basic scans, scanning specific ports, full subnets, and optimizing scans by disabling DNS resolution and skipping ping checks. Additionally, it offers a comprehensive command that combines multiple options for an efficient scan.

Uploaded by

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

44-TCP Null Scanning Lab

The document provides a guide on performing TCP NULL scans using the Nmap tool, detailing various command examples for different scanning purposes. It includes commands for basic scans, scanning specific ports, full subnets, and optimizing scans by disabling DNS resolution and skipping ping checks. Additionally, it offers a comprehensive command that combines multiple options for an efficient scan.

Uploaded by

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

TCP Null Scanning Lab:

Purpose Command Example


Basic TCP NULL Scan nmap -sN 192.168.1.3
Scan specific ports nmap -sN -p 22,80,443 192.168.1.3
Scan full subnet nmap -sN 192.168.1.0/24
Disable reverse DNS nmap -sN -n 192.168.1.3
Skip ping (assume up) nmap -sN -Pn 192.168.1.3
Faster aggressive scan nmap -sN -T4 192.168.1.3
Save all output formats nmap -sN -oA outputfile 192.168.1.3
Full optimized command nmap -sN -p 22,80,443,3389 -T4 -Pn -n -oA
outputfile 192.168.1.3

1 | P a g e Created by Ahmad Ali E-Mail: [email protected] , WhatsApp: 00966564303717


2 | P a g e Created by Ahmad Ali E-Mail: [email protected] , WhatsApp: 00966564303717

You might also like