Nmap-scripts-http: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
Zeile 34: Zeile 34:
  
 
=Find Files or interestings Dirs on Webserver=
 
=Find Files or interestings Dirs on Webserver=
*nmap --script http-enum -p 443 10.3.4.12
+
 
 +
* '''nmap --script http-enum -p 443 10.3.4.12'''

Version vom 10. August 2023, 05:57 Uhr

Show HTTP Title

  • nmap --script http-title -sV -p 80 192.168.34.1
Starting Nmap 7.93 ( https://nmap.org ) at 2023-02-26 14:42 CET
Nmap scan report for ns1.vulkan.int (192.168.34.1)
Host is up (0.00048s latency).

PORT   STATE SERVICE VERSION
80/tcp open  http    Apache httpd 2.4.54 ((Debian))
|_http-server-header: Apache/2.4.54 (Debian)
|_http-title: Apache2 Debian Default Page: It works
MAC Address: 08:00:27:1B:67:A0 (Oracle VirtualBox virtual NIC)

Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 6.63 seconds

HTTP Bannergrabbing

  • nmap -sV -p 80 --script=banner 192.168.34.1

Starting Nmap 7.93 ( https://nmap.org ) at 2023-02-26 14:46 CET
Nmap scan report for ns1.vulkan.int (192.168.34.1)
Host is up (0.00054s latency).

PORT   STATE SERVICE VERSION
80/tcp open  http    Apache httpd 2.4.54 ((Debian))
|_http-server-header: Apache/2.4.54 (Debian)
MAC Address: 08:00:27:1B:67:A0 (Oracle VirtualBox virtual NIC)

Service detection performed. Please report any incorrect results at https://nmap.org/submit/ .
Nmap done: 1 IP address (1 host up) scanned in 16.73 seconds


Find Files or interestings Dirs on Webserver

* nmap --script http-enum -p 443 10.3.4.12