
Ferramentas para detectar e avaliar sistemas vulneráveis ao CVE-2025-53770 (CWE-502: Deserialization of Untrusted Data).
Um kit de ferramentas abrangente de detecção de vulnerabilidades para identificar sistemas vulneráveis ao CVE-2025-53770 (CWE-502: Desserialização de Dados Não Confiáveis).
Este projeto fornece scripts de detecção prontos para uso empresarial para identificar e avaliar sistemas potencialmente vulneráveis ao CVE-2025-53770, uma vulnerabilidade de segurança relacionada à desserialização insegura de dados não confiáveis. O kit de ferramentas inclui implementações em PowerShell e Python para máxima compatibilidade em diferentes ambientes.
# Basic scan
.\src\detectors\detector.ps1 -TargetRange "192.168.1.1-50"
# Scan with output file and verbose logging
.\src\detectors\detector.ps1 -TargetRange "192.168.1.0/24" -OutputFile "results.json" -Verbose
# Install with uv (recommended)
uv sync
# Basic scan
uv run python src/detectors/detector.py --target-range "192.168.1.1-50"
# Scan with output file and verbose logging
uv run python src/detectors/detector.py --target-range "10.0.0.0/24" --output results.json --verbose
# Or use the installed script
uv run cve-2025-53770-detect --target-range "192.168.1.1-50"
CVE-2025-53770/
├── README.md
├── docs/
│ ├── CLAUDE.md
│ ├── DETECTION_ALGORITHMS.md
│ ├── LIBRARIES.md
│ ├── NOTES.md
│ ├── PROJ_NOTES.md
│ ├── TASKS.md
│ └── TODO.md
├── src/
│ └── detectors/
│ ├── __init__.py
│ ├── detector.py
│ └── detector.ps1
├── tests/
│ ├── README.md
│ ├── mock_server/
│ ├── test_data/
│ └── unit/
├── .gitignore
├── pyproject.toml
└── uv.lock
Instalar uv (se ainda não estiver instalado)
# On macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# Alternative: use pip
pip install uv
Clonar o repositório
git clone <repository-url>
cd CVE-2025-53770
Instalar dependências Python
# Install all dependencies (recommended)
uv sync
# Or install specific groups
uv sync --group testing
uv sync --group dev
# Alternative with pip (if uv not available)
pip install -e .
Verificar instalação
# Test Python detector
uv run python src/detectors/detector.py --help
uv run cve-2025-53770-detect --help
# Test PowerShell detector
Get-Help .\src\detectors\detector.ps1
detector.ps1)TargetRange (Obrigatório): Faixa de IP para varredura
"192.168.1.100""192.168.1.1-50""192.168.1.0/24" (suporte básico)OutputFile (Opcional): Caminho para salvar resultados JSONVerbose (Opcional): Ativar log detalhado# Scan single subnet with verbose output
.\src\detectors\detector.ps1 -TargetRange "192.168.1.1-254" -Verbose
# Enterprise scan with results export
.\src\detectors\detector.ps1 -TargetRange "10.0.0.1-100" -OutputFile "enterprise_scan.json"
src/detectors/detector.py)--target-range, -t (Obrigatório): Faixa de IP para varredura--output, -o (Opcional): Arquivo de saída para resultados JSON--verbose, -v (Opcional): Ativar log detalhado# Comprehensive network scan
uv run python src/detectors/detector.py --target-range "192.168.0.0/24" --verbose
# Targeted scan with results export
uv run python src/detectors/detector.py -t "10.0.1.1-50" -o vulnerability_report.json
# Using the installed command
uv run cve-2025-53770-detect --target-range "192.168.0.0/24" --output scan_results.json
Os detectores identificam:
ObjectInputStream, BinaryFormatter)pickle.loads, yaml.load)Ambos os detectores geram relatórios JSON estruturados:
{
"scan_metadata": {
"cve_id": "CVE-2025-53770",
"scan_date": "2025-07-28T10:30:00Z",
"scanner_version": "Python-1.0",
"target_range": "192.168.1.1-50",
"total_vulnerabilities": 3,
"total_high_severity": 1,
"total_medium_severity": 2,
"total_low_severity": 0
},
"vulnerabilities": [
{
"timestamp": "2025-07-28T10:30:15Z",
"target": {
"ip_address": "192.168.1.100",
"port": 8080
},
"vulnerability": {
"cve_id": "CVE-2025-53770",
"cwe_id": "CWE-502",
"description": "Deserialization of Untrusted Data",
"severity": "HIGH",
"score": 75,
"is_vulnerable": true
},
"findings": [
"Java application server detected: Apache Tomcat",
"Deserialization pattern detected: ObjectInputStream"
],
"technical_details": {
"probe_results": { /* HTTP response data */ },
"scan_method": "Python Async HTTP Probe"
}
}
]
}
Esta ferramenta é projetada apenas para fins de segurança defensiva. Deve ser usada apenas:
Os autores não são responsáveis por qualquer uso indevido desta ferramenta.
Este projeto está licenciado sob a Licença MIT – consulte o arquivo LICENSE para obter detalhes.
git checkout -b feature/improvement)git commit -am 'Add new feature')git push origin feature/improvement)Para problemas, perguntas ou contribuições:
/docsÚltima Atualização: 28 de julho de 2025
Versão: 1.0.0
Mantenedor: Equipe de Pesquisa de Segurança