👨‍💻
Pentesting
  • Prerequisite
  • Penetration Testing Stages
  • Enumeration/Scanning
    • Nmap
    • Netdiscover
  • Web Attack
    • Ffuf
    • Dirb
    • GoBuster
    • Dirsearch
    • FeroxBuster
    • Wfuzz
    • Nikto
  • SSH
    • Download File
  • Transporting Files
    • Windows
    • Linux
  • Port Forwarding & Pivoting
  • Pwncat
  • SMB
    • SmbClient
    • SmbMap
  • SQL Injection
  • Reverse Shells
    • PHP Pentest Monkey
    • Bash
    • PHP
      • Voting System 1.0 - Remote Code Execution (Unauthenticated)
    • Netcat
    • Python
    • Nishang
  • Impacket
    • psexec.py
    • wmiexec.py
    • secretsdump.py
    • impacket-smbserver
    • GetUserSPNs.py
  • Active Directory Attacks
    • Enum4linux
    • Kerbrute
    • Responder.py
    • RPCclient
    • Crackmapexec
    • BloodHound-Python
    • Powerview.ps1
    • GetUserSPNs.py
    • SharpHound.ps1
    • Mimikatz
    • Metasploit
  • Password Cracking
    • Hydra
      • FTP
      • SSH
      • HTTP
    • Hashcat
    • John The Ripper
      • Jumbo John
  • Powershell
    • Secure String Powershell
  • MSFVenom
    • MSFVenom Payload
    • Multihandler Listener
    • AlwaysInstallElevated
  • Meterpreter
  • Privilege Escalation
    • Linux
      • GTFOBins
      • linPEAS
    • Windows
      • LOLBAS
      • winPEAS
      • AlwaysInstallElevated
      • System Enumeration
      • User Enum
      • Network Enumeration
  • WordPress
    • Wpscan
Powered by GitBook
On this page
  • EXPORT IP
  • Default Scan
  • Full TCP Scan
  • TCP Top 1000
  • TCP Top 1000 Probe Scan
  • All TCP Ports
  • UDP Top 100
  1. Enumeration/Scanning

Nmap

EXPORT IP

EXPORT IP= <TARGET_IP>

Default Scan

nmap -sV -sC -v -oA initial $IP
nmap -sV -sC -v -oN initial $IP
nmap -p- -v $IP
nmap -A -p- -T 4 $IP -oA nmap.all

Full TCP Scan

nmap -sC -sV -p- -vv -oA full $IP
nmap -sT -p- --min-rate $IP

TCP Top 1000

nmap -sC -sV -oA tcp -vv $IP

TCP Top 1000 Probe Scan

nmap -sC -sV -oA tcp -vv $IP -Pn

All TCP Ports

nmap -sC -sV -oA all -vv -p- $IP

UDP Top 100

nmap -sU --top-ports 100 -oA udp -vv $IP
PreviousEnumeration/ScanningNextNetdiscover

Last updated 2 years ago