Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2019-15043 — Grafana 서버에서 CVE-2019-15043을 점검하는 PoC 스캐너로, 버전을 검증하고 인증되지 않은 snapshot API 접근을 테스트합니다. | Kitploit
도구/GitHubGitHub/h0ffayyy/cve-2019-15043
Vulnerability ScannersExploitationInformation GatheringWeb SecurityPenetration Testing
GitHubh0ffayyy/cve-2019-15043

CVE-2019-15043

Grafana 서버에서 CVE-2019-15043을 점검하는 PoC 스캐너로, 버전을 검증하고 인증되지 않은 snapshot API 접근을 테스트합니다.

저장소 보기
8213년 전아직 검토되지 않음

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2019-15043 POC

설명

Grafana 서버가 CVE-2019-15043에 취약한지 확인하는 개념 증명 스캔입니다. Grafana 서버 버전 번호를 확인하고 스냅샷 API가 인증되지 않은 요청을 허용하는지 확인합니다.

CVE-2019-15043

CVE-2019-15043은 Grafana 스냅샷 API에서 발견된 서비스 거부 취약점입니다.

이 취약점은 버전 5.4.5 및 6.3.4에서 수정되었습니다.

요구 사항

requests 라이브러리만 필요합니다.

pip3 install requests로 설치하세요.

사용법

root@kitploit:~
$ ./cve-2019-15043.py -h
usage: cve-2019-15043.py [-h] [-u URL] [-c]

For checking if a Grafana instance is vunlerable to CVE-2019-15043

optional arguments:
  -h, --help           show this help message and exit
  -u URL, --url URL    URL of the target Grafana instance e.g. '-u
                       https://localhost:3000'
  -c, --check-version  Only check the Grafana versio

예제 출력

버전 번호만 확인:

root@kitploit:~
$ ./cve-2019-15043.py -u http://192.168.3.38:3000 -c
[-] Testing http://192.168.3.38:3000...
[-] Status: 200
[-] Checking for version...
[-] Grafana version appears to be: 6.3.3
[+] Version seems to indicate it might be vulnerable!
root@kitploit:~
$ ./cve-2019-15043.py -u http://192.168.3.38:3000 -c
[-] Testing http://192.168.3.38:3000...
[-] Status: 200
[-] Checking for version...
[-] Grafana version appears to be: 6.3.4
[!] Version seems to indicate it's probably not vulnerable.

스냅샷 API가 인증을 요구하는지 확인:

root@kitploit:~
$ ./cve-2019-15043.py -u http://192.168.3.38:3000
[-] Testing http://192.168.3.38:3000...
[-] Status: 200
[-] Checking for version...
[-] Grafana version appears to be: 6.3.3
[+] Version seems to indicate it might be vulnerable!
[-] Checking if snapshot api requires authentiation...
[+] Snapshot endpoint doesn't seem to require authentication! Host may be vulnerable.
root@kitploit:~
./cve-2019-15043.py -u http://192.168.3.38:3000
[-] Testing http://192.168.3.38:3000...
[-] Status: 200
[-] Checking for version...
[-] Grafana version appears to be: 6.3.4
[!] Version seems to indicate it's probably not vulnerable.
[-] Checking if snapshot api requires authentiation...
[!] Status: 401
[!] Snapshot endpoint requires authentication! Host not vulnerable.

참고 자료

  • https://grafana.com/blog/2019/08/29/grafana-5.4.5-and-6.3.4-released-with-important-security-fix/
  • https://bugzilla.redhat.com/show_bug.cgi?id=1746945
도구 다운로드