
CVE-2026-23479 Redis Use-After-Free 취약점 탐지 도구
Redis Use-After-Free 취약점(CVE-2026-23479) 탐지 도구.
Redis 인스턴스에서 취약점, 잘못된 구성, 노출 위험을 자동으로 점검합니다.
| 브랜치 | 영향받는 버전 | 수정 버전 |
|---|---|---|
| 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
# 단일 대상 스캔
python redis_cve_scanner.py 192.168.1.100
# 포트 지정 스캔
python redis_cve_scanner.py 192.168.1.100 -p 6380
# 인증 포함 스캔
python redis_cve_scanner.py 192.168.1.100 -a yourpassword
# JSON 출력
python redis_cve_scanner.py 192.168.1.100 -f json
# 여러 대상
python redis_cve_scanner.py host1 host2 host3:6380
# 파일에서 대상 불러오기
python redis_cve_scanner.py @targets.txt
# 파일로 저장
python redis_cve_scanner.py 192.168.1.100 -o results.json -f json
| 코드 | 의미 |
|---|---|
| 0 | 취약한 인스턴스 없음 |
| 2 | 취약한 인스턴스 발견됨 |
| 1 | 오류 |
MIT