
أداة كشف ثغرة الاستخدام بعد التحرير (Use-After-Free) في Redis المرتبطة بـ CVE-2026-23479
| الفرع | المتأثر | الإصلاح |
|---|
| 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
| الرمز | المعنى |
|---|---|
| 0 | لم يتم العثور على أي حالات معرضة للثغرة |
| 2 | تم اكتشاف حالات معرضة للثغرة |
| 1 | خطأ |
MIT