Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-9082 — Semi-passive scanner that detects Drupal installations vulnerable to CVE-2026-9082 (PostgreSQL SQL injection) via fingerprinting, version detection, and endpoint probing without sending payloads. | Kitploit
Tools/GitHubGitHub/strobelpierre/cve-2026-9082
ReconnaissanceVulnerability ScannersWeb Vulnerability ScannersInformation GatheringWeb SecurityDatabase Security
GitHubstrobelpierre/cve-2026-9082

CVE-2026-9082

Semi-passive scanner that detects Drupal installations vulnerable to CVE-2026-9082 (PostgreSQL SQL injection) via fingerprinting, version detection, and endpoint probing without sending payloads.

View Repository
2 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CI

Drupal CVE-2026-9082 Scanner

Semi-passive scanner that detects Drupal installations potentially vulnerable to CVE-2026-9082 (PostgreSQL SQL injection).

No SQL payloads sent. No state-changing requests.

Vulnerable Versions

BranchAffectedFixed
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

Install

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

Usage

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 .

Options

JSON Output Example

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 Batch Scanning

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 Template

Use the included template with Nuclei:

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

Detection Methods

  1. Drupal fingerprinting — HTML body keywords, HTTP headers
  2. Version detection — CHANGELOG.txt, X-Generator header, asset ?v= parameter
  3. PostgreSQL indicators — error strings, driver names in responses
  4. Endpoint probing — /jsonapi, /user/login, /node, /admin (parallel)
  5. WAF detection — Cloudflare, Akamai, Sucuri, Imperva, Fastly

Legal

See DISCLAIMER.md. Use only with explicit authorization.

See SECURITY.md for reporting vulnerabilities in this tool.

Download Tool
FlagDescription
--jsonOutput results as JSON
--csvOutput results as CSV (header + row)
--verbose, -vDebug output to stderr
--timeout NHTTP timeout in seconds (default 30)
--versionShow scanner version
-h, --helpShow help