
Uma pequena ferramenta para criar um PoC para o CVE-2000-0649.
Uma pequena ferramenta para criar um PoC para a CVE-2000-0649.
Este script verifica se o servidor é vulnerável à CVE-2000-0649. Lembre-se de testar com HTTP, HTTPS e diferentes caminhos. Na minha experiência, a divulgação de informações ocorre principalmente ao conectar via HTTP e usar o caminho padrão '/' ou '/images'.
Você precisará fornecer o host/endereço IP e uma porta. Por padrão, o caminho é definido como '/'. Opcionalmente, você pode especificar um caminho, começando com '/'.
$ 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.
Sinta-se à vontade para abrir issues, contribuir e enviar seus Pull Requests. Você também pode me chamar no Twitter (@PvdH)