
Escáner de vulnerabilidades basado en red para detectar sistemas vulnerables a CVE-2025-53770 (deserialización insegura). Incluye detectores en PowerShell y Python con puntuación de riesgo y generación de informes en JSON.
Un kit de herramientas integral de detección de vulnerabilidades para identificar sistemas vulnerables a CVE-2025-53770 (CWE-502: Deserialización de datos no confiables).
Este proyecto proporciona scripts de detección listos para entornos empresariales para identificar y evaluar sistemas potencialmente vulnerables a CVE-2025-53770, una vulnerabilidad de seguridad relacionada con la deserialización insegura de datos no confiables. El kit incluye implementaciones tanto en PowerShell como en Python para una máxima compatibilidad en diferentes entornos.
# 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 (si aún no está 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 el repositorio
git clone <repository-url>
cd CVE-2025-53770
Instalar las dependencias de 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 la instalación
# 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 (Obligatorio): Rango de IPs a escanear
"192.168.1.100""192.168.1.1-50""192.168.1.0/24" (soporte básico)OutputFile (Opcional): Ruta para guardar los resultados JSONVerbose (Opcional): Habilita el registro detallado# 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 (Obligatorio): Rango de IPs a escanear--output, -o (Opcional): Archivo de salida para los resultados JSON--verbose, -v (Opcional): Habilita el registro detallado# 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
Los detectores identifican:
ObjectInputStream, BinaryFormatter)pickle.loads, yaml.load)Ambos detectores generan informes JSON estructurados:
{
"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 herramienta está diseñada únicamente para fines de seguridad defensiva. Solo debe utilizarse:
Los autores no son responsables de ningún uso indebido de esta herramienta.
Este proyecto está licenciado bajo la Licencia MIT; consulte el archivo LICENSE para obtener más detalles.
git checkout -b feature/improvement)git commit -am 'Add new feature')git push origin feature/improvement)Para problemas, preguntas o contribuciones:
/docsÚltima actualización: 28 de julio de 2025
Versión: 1.0.0
Mantenedor: Equipo de Investigación de Seguridad