IP ADDRESS DETECTION
Yourself: From ISP Public IP.
From local router to access internet: Public and private
From Local router to access local network: Private IP
Linux: ifconfig
Router: ipr
NMap stands for network mapper. Used for network scanning.
USES: Ping Sweeping
Running service detection
Open ports
Check target connectivity by firewall bypassing
Mac address detection
DOS Attack
NMap Command commands:
# Default scan: It will result the following
Host Status <up/down>
Target mac address detection
Open ports
Protocol used <TCP/UDP>
Port Status <Open/Closed/Filtered>
Running services name on open ports
Commands: nmap <target ip>
nmap <target domain>
# Default scan + firewall bypassing
: nmap -Pn <target ip>
# Quick fastscan: It will result Host status <up/down>
Mac address: nmap -sP <target ip>
# Target os detection :It will result Default scan + OS
: nmap -O <target ip>
#All detail Scan: It will result Default scan + Os detection + Root trace
: nmap -A <target ip>
# Port scanning:
Scanning a specific port :
: nmap -p <port number> <target Ip>
scanning port in a range:
: nmap -p <starting port> - <ending port>
Scanning port all 65535:
: nmap -p- <target ip>
* Ping Sweep: Process of bulk sweep
Firewall detection steps:
Ping
nmap -Pn <target ip>
Angry ip scanner
Comments
Post a Comment