
Ein kleines Tool zum Erstellen eines PoC für CVE-2000-0649.
Ein kleines Tool zur Erstellung eines PoC für CVE-2000-0649.
Dieses Skript überprüft, ob der Server anfällig für CVE-2000-0649 ist. Beachten Sie, dass Sie mit HTTP, HTTPS und verschiedenen Pfaden experimentieren sollten. Meiner Erfahrung nach tritt die Offenlegung meist auf, wenn über HTTP und mit dem Standardpfad '/' oder '/images' verbunden wird.
Sie müssen den Host/die IP-Adresse und einen Port angeben. Standardmäßig ist der Pfad auf '/' gesetzt. Optional können Sie einen Pfad angeben, der mit '/' beginnt.
$ python3 cve-2000-0649.py -host {hostname} -port {port} -path {path}
This script verifies if the server is vulnerable for CVE-2000-0649.
Keep in mind to play with HTTP, HTTPS and different paths. In my experience the disclosure is mostly happening when connecting over HTTP and using the default path '/' or '/images'
Server response:
HTTP/1.1 301 Moved Permanently
Content-Type: text/html; charset=UTF-8
Location: https://192.168.1.1/images/
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
Date: Tue, 18 Jun 2024 13:26:25 GMT
Connection: close
Content-Length: 152
<head><title>Document Moved</title></head>
<body><h1>Object Moved</h1>This document may be found <a HREF="https://192.168.1.1/images/">here</a></body>
The server may be vulnerable to CVE-2000-0649.
The response contains an internal IP address, indicating a potential information disclosure.
Sie können gerne Issues eröffnen, Beiträge leisten und Ihre Pull Requests einreichen. Sie können mich auch auf Twitter (@PvdH) kontaktieren.