Skip to main content

Network Scaanning Techniques

Quick Scan the network before jumping into the service enumeration and hacking. Listing down the most effective and quick methods to perform scanning.


tip

Before using the commands assign your IP to a variable like IP=192.168.1.1 and easily copy and paste commands to execute.


Using rustscan

rustscan is a very effective tool to perform quick scanning and finds ports very quickely.

rustscan -a $IP

Using Nmap

The classic scanner of ports and service enumeartion tool below are list of quick commands

  1. TCP Full Port scanning

    nmap -sV -sC -p- $IP --open -oN nmap_tcp