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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-9082 — 핑거프린팅, 버전 탐지, 엔드포인트 프로빙을 통해 페이로드를 전송하지 않고 CVE-2026-9082(PostgreSQL SQL 인젝션)에 취약한 Drupal 설치를 탐지하는 반수동적 스캐너입니다. | Kitploit
도구/GitHubGitHub/strobelpierre/cve-2026-9082
ReconnaissanceVulnerability ScannersWeb Vulnerability ScannersInformation GatheringWeb SecurityDatabase Security
GitHubstrobelpierre/cve-2026-9082

CVE-2026-9082

핑거프린팅, 버전 탐지, 엔드포인트 프로빙을 통해 페이로드를 전송하지 않고 CVE-2026-9082(PostgreSQL SQL 인젝션)에 취약한 Drupal 설치를 탐지하는 반수동적 스캐너입니다.

저장소 보기
2개월 전아직 검토되지 않음

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CI

Drupal CVE-2026-9082 스캐너

CVE-2026-9082(PostgreSQL SQL 인젝션)에 취약할 수 있는 Drupal 설치를 탐지하는 세미 패시브 스캐너입니다.

SQL 페이로드는 전송되지 않습니다. 상태를 변경하는 요청도 없습니다.

취약한 버전

브랜치영향받는 버전수정 버전
10.4.x8.9.0 — 10.4.910.4.10
10.5.x10.5.0 — 10.5.910.5.10
10.6.x10.6.0 — 10.6.810.6.9
11.1.x11.0.0 — 11.1.911.1.10
11.2.x11.2.0 — 11.2.1111.2.12
11.3.x11.3.0 — 11.3.911.3.10

설치

root@kitploit:~
# Direct download
curl -LO https://github.com/strobelpierre/CVE-2026-9082/releases/latest/download/drupal-cve-2026-9082-scanner.sh
chmod +x drupal-cve-2026-9082-scanner.sh

# Or clone
git clone https://github.com/strobelpierre/CVE-2026-9082.git
cd CVE-2026-9082

사용법

root@kitploit:~
# Basic scan
./scanner.sh https://target.tld

# JSON output
./scanner.sh --json https://target.tld

# CSV output (pipe-friendly)
./scanner.sh --csv https://target.tld

# Verbose mode with custom timeout
./scanner.sh --verbose --timeout 60 https://target.tld

# Combine: JSON + verbose debug on stderr
./scanner.sh --json -v https://target.tld 2>debug.log | jq .

옵션

JSON 출력 예제

root@kitploit:~
{
  "scanner": "drupal-cve-2026-9082-scanner",
  "scanner_version": "1.0.0",
  "scan_date": "2026-05-27T10:30:00Z",
  "target": "https://example.com",
  "results": {
    "drupal_detected": true,
    "drupal_version": "11.2.5",
    "version_vulnerable": true,
    "postgresql_detected": true,
    "endpoints_found": 3,
    "endpoints": [
      {"path": "/jsonapi", "status": 200},
      {"path": "/user/login", "status": 200},
      {"path": "/node", "status": 403}
    ],
    "waf_detected": false,
    "waf_name": "null",
    "confidence_score": 90,
    "confidence_level": "HIGH"
  }
}

CSV 일괄 스캔

root@kitploit:~
while read -r url; do
    ./scanner.sh --csv "$url" | tail -1
done < targets.txt >> results.csv

Docker

root@kitploit:~
# Build
docker build -t cve-2026-9082-scanner .

# Run
docker run --rm cve-2026-9082-scanner https://target.tld
docker run --rm cve-2026-9082-scanner --json https://target.tld

Nuclei 템플릿

포함된 템플릿을 Nuclei와 함께 사용하세요:

root@kitploit:~
nuclei -t nuclei/CVE-2026-9082.yaml -u https://target.tld
nuclei -t nuclei/CVE-2026-9082.yaml -l targets.txt

탐지 방법

  1. Drupal 핑거프린팅 — HTML 본문 키워드, HTTP 헤더
  2. 버전 탐지 — CHANGELOG.txt, X-Generator 헤더, 에셋 ?v= 파라미터
  3. PostgreSQL 지표 — 응답의 오류 문자열, 드라이버 이름
  4. 엔드포인트 프로빙 — /jsonapi, /user/login, /node, /admin (병렬)
  5. WAF 탐지 — Cloudflare, Akamai, Sucuri, Imperva, Fastly

법적 고지

DISCLAIMER.md를 참조하세요. 명시적인 승인을 받은 경우에만 사용하세요.

이 도구의 취약점을 신고하려면 SECURITY.md를 참조하세요.

도구 다운로드
플래그설명
--json결과를 JSON으로 출력
--csv결과를 CSV로 출력 (헤더 + 행)
--verbose, -v디버그 출력을 stderr로 전송
--timeout NHTTP 타임아웃(초) (기본값 30)
--version스캐너 버전 표시
-h, --help도움말 표시