
Tool zur Erkennung der Use-After-Free-Sicherheitslücke CVE-2026-23479 in Redis
| Branch | Betroffen | Behoben |
|---|
| 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
# Einzelnes Ziel scannen
python redis_cve_scanner.py 192.168.1.100
# Mit Port scannen
python redis_cve_scanner.py 192.168.1.100 -p 6380
# Mit Authentifizierung scannen
python redis_cve_scanner.py 192.168.1.100 -a yourpassword
# JSON-Ausgabe
python redis_cve_scanner.py 192.168.1.100 -f json
# Mehrere Ziele
python redis_cve_scanner.py host1 host2 host3:6380
# Ziele aus Datei
python redis_cve_scanner.py @targets.txt
# In Datei speichern
python redis_cve_scanner.py 192.168.1.100 -o results.json -f json
| Code | Bedeutung |
|---|---|
| 0 | Keine verwundbaren Instanzen gefunden |
| 2 | Verwundbare Instanzen erkannt |
| 1 | Fehler |
MIT