Nmap-scripts-http: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „=Show HTTP Title= *nmap --script http-title -sV -p 80 192.168.34.1 <pre> Starting Nmap 7.93 ( https://nmap.org ) at 2023-02-26 14:42 CET Nmap scan report for…“) |
|||
| Zeile 15: | Zeile 15: | ||
Nmap done: 1 IP address (1 host up) scanned in 6.63 seconds | Nmap done: 1 IP address (1 host up) scanned in 6.63 seconds | ||
</pre> | </pre> | ||
| + | =HTTP Bannergrabbing= | ||
| + | *nmap -sV -p 80 --script=banner 192.168.34.1 | ||
| + | <pre> | ||
| + | |||
| + | 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 | ||
| + | <pre> | ||
| + | |||
| + | |||
=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 26. Februar 2023, 13:47 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 secondsFind Files or interestings Dirs on Webserver
*nmap --script http-enum -p 443 10.3.4.12