
CVE-2026-23479 Ferramenta de detecção de vulnerabilidade Use-After-Free do Redis
Ferramenta de detecção da vulnerabilidade Use-After-Free do Redis (CVE-2026-23479).
Verifica automaticamente instâncias Redis quanto a vulnerabilidades, configurações incorretas e riscos de exposição.
| Branch | Afetadas | Corrigidas |
|---|---|---|
| 7.2.x | 7.2.0 - 7.2.13 | 7.2.14 |
| 7.4.x | 7.4.0 - 7.4.8 | 7.4.9 |
| 8.2.x | 8.2.0 - 8.2.5 | 8.2.6 |
| 8.4.x | 8.4.0 - 8.4.2 | 8.4.3 |
| 8.6.x | 8.6.0 - 8.6.2 | 8.6.3 |
pip install redis
# Scan single target
python redis_cve_scanner.py 192.168.1.100
# Scan with port
python redis_cve_scanner.py 192.168.1.100 -p 6380
# Scan with auth
python redis_cve_scanner.py 192.168.1.100 -a yourpassword
# JSON output
python redis_cve_scanner.py 192.168.1.100 -f json
# Multiple targets
python redis_cve_scanner.py host1 host2 host3:6380
# Targets from file
python redis_cve_scanner.py @targets.txt
# Save to file
python redis_cve_scanner.py 192.168.1.100 -o results.json -f json
| Código | Significado |
|---|---|
| 0 | Nenhuma instância vulnerável encontrada |
| 2 | Instâncias vulneráveis detectadas |
| 1 | Erro |
MIT