Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
PoC-CVE-2000-0649 — Una pequeña herramienta para crear un PoC de CVE-2000-0649. | Kitploit
Herramientas/GitHubGitHub/downgraderz/poc-cve-2000-0649
ReconocimientoAnálisis de VulnerabilidadesExplotaciónRecopilación de InformaciónSeguridad Web
GitHubdowngraderz/poc-cve-2000-0649

PoC-CVE-2000-0649

Una pequeña herramienta para crear un PoC de CVE-2000-0649.

Ver Repositorio
1hace 2 añosAún no revisado

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir

PoC-CVE-2000-0649

Una pequeña herramienta para crear un PoC para CVE-2000-0649.

Uso

Este script verifica si el servidor es vulnerable a CVE-2000-0649. Ten en cuenta experimentar con HTTP, HTTPS y diferentes rutas. En mi experiencia, la divulgación ocurre principalmente al conectar a través de HTTP y usando la ruta predeterminada '/' o '/images'.

Necesitarás proporcionar el host/dirección IP y un puerto. Por defecto, la ruta está establecida a '/'. Opcionalmente puedes especificar una ruta, comenzando con '/'.

root@kitploit:~
$ 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.

Contribuciones

Siéntete libre de abrir issues, contribuir y enviar tus Pull Requests. También puedes contactarme en Twitter (@PvdH)

Descargar herramienta