Nmap: Unterschied zwischen den Versionen

Aus Meine Wiki
Zur Navigation springen Zur Suche springen
Zeile 15: Zeile 15:
 
:[http://www.cyberciti.biz/networking/nmap-command-examples-tutorials/ Befehle]
 
:[http://www.cyberciti.biz/networking/nmap-command-examples-tutorials/ Befehle]
  
 
+
Scan top Ports
 
   nmap --top-ports 10 192.168.1.1
 
   nmap --top-ports 10 192.168.1.1
  
  ### Scan a single ip address ###
+
Scan a single ip address
 
   nmap 192.168.1.1
 
   nmap 192.168.1.1
 
   
 
   
  ## Scan a host name ###
+
Scan a host name
 
   nmap server1.cyberciti.biz
 
   nmap server1.cyberciti.biz
 
   
 
   
  ## Scan a host name with more info###
+
Scan a host name with more info
 
   nmap -v server1.cyberciti.biz
 
   nmap -v server1.cyberciti.biz
  
  ## Combine all options ##
+
Scan port 80,443,9101,16203
 
   nmap -p 80,443,9101,16203 192.168.1.1
 
   nmap -p 80,443,9101,16203 192.168.1.1

Version vom 21. Februar 2020, 16:50 Uhr

  • nmap -A -T4 10.0.0.32
  • nmap -sS -0 -v -T insane 10.0.0.32
  • nmap -p 1352 example.dyndns.org


Scannen
Scanning
Basics
Port Scanning Basics


Eigene IP Adresse ermitteln
Befehle

Scan top Ports

  nmap --top-ports 10 192.168.1.1

Scan a single ip address

  nmap 192.168.1.1

Scan a host name

  nmap server1.cyberciti.biz

Scan a host name with more info

  nmap -v server1.cyberciti.biz

Scan port 80,443,9101,16203

  nmap -p 80,443,9101,16203 192.168.1.1