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

50-TCP Window Scanning Lab

The document provides a guide on TCP window scanning using the Nmap tool, detailing various commands for different scanning purposes. It includes examples for basic scans, specific port scans, subnet scans, and options to disable DNS, skip ping, and save output. The document also presents a full optimized command for comprehensive scanning.

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)
12 views1 page

50-TCP Window Scanning Lab

The document provides a guide on TCP window scanning using the Nmap tool, detailing various commands for different scanning purposes. It includes examples for basic scans, specific port scans, subnet scans, and options to disable DNS, skip ping, and save output. The document also presents a full optimized command for comprehensive scanning.

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/ 1

TCP Window Scanning Lab:

Purpose Command Example


Basic TCP Window Scan nmap -sW 192.168.1.3
Scan specific ports nmap -sW -p 22,80,443 192.168.1.3
Scan full subnet nmap -sW 192.168.1.0/24
Disable reverse DNS nmap -sW -n 192.168.1.3
Skip ping (assume up) nmap -sW -Pn 192.168.1.3
Faster aggressive scan nmap -sW -T4 192.168.1.3
Save all output formats nmap -sW -oA outputfile 192.168.1.3
Full optimized command nmap -sW -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: ahmadalimsc@gmail.com , WhatsApp: 00966564303717

You might also like