
Strumento di rilevamento della vulnerabilità Use-After-Free di Redis (CVE-2026-23479)
Strumento di rilevamento della vulnerabilità use-after-free in Redis (CVE-2026-23479).
Controlla automaticamente le istanze Redis per rilevare vulnerabilità, configurazioni errate e rischi di esposizione.
| Ramo | Vulnerabili | Corrette |
|---|---|---|
| 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
# Scansione di un singolo target
python redis_cve_scanner.py 192.168.1.100
# Scansione con porta
python redis_cve_scanner.py 192.168.1.100 -p 6380
# Scansione con autenticazione
python redis_cve_scanner.py 192.168.1.100 -a yourpassword
# Output JSON
python redis_cve_scanner.py 192.168.1.100 -f json
# Più target
python redis_cve_scanner.py host1 host2 host3:6380
# Target da file
python redis_cve_scanner.py @targets.txt
# Salvataggio su file
python redis_cve_scanner.py 192.168.1.100 -o results.json -f json
| Codice | Significato |
|---|---|
| 0 | Nessuna istanza vulnerabile trovata |
| 2 | Rilevate istanze vulnerabili |
| 1 | Errore |
MIT