Security Vulnerability Report
中文
CVE-2025-6325 CVSS 9.8 CRITICAL

CVE-2025-6325

Published: 2025-11-06 16:16:15
Last Modified: 2026-04-15 00:35:42

Description

Incorrect Privilege Assignment vulnerability in KingAddons.com King Addons for Elementor king-addons allows Privilege Escalation.This issue affects King Addons for Elementor: from n/a through <= 51.1.36.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

King Addons for Elementor <= 51.1.36

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-6325 PoC - Privilege Escalation in King Addons for Elementor # This PoC demonstrates the vulnerability concept (for authorized testing only) import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-6325 """ target = target_url.rstrip('/') # Check if King Addons plugin is installed and get version plugin_info_url = f"{target}/wp-content/plugins/king-addons/readme.txt" try: response = requests.get(plugin_info_url, timeout=10) if response.status_code == 200: print("[+] King Addons plugin detected") if "51.1.36" in response.text or "Version:" in response.text: print("[!] Plugin version <= 51.1.36 - potentially vulnerable") return True except requests.RequestException as e: print(f"[-] Error: {e}") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-6325.py <target_url>") sys.exit(1) target_url = sys.argv[1] print(f"[*] Checking {target_url} for CVE-2025-6325...") if check_vulnerability(target_url): print("[+] Target appears to be vulnerable") print("[+] Please verify manually and report to vendor") else: print("[-] Target does not appear to be vulnerable") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-6325", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:14.643", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in KingAddons.com King Addons for Elementor king-addons allows Privilege Escalation.This issue affects King Addons for Elementor: from n/a through <= 51.1.36."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/king-addons/vulnerability/wordpress-king-addons-for-elementor-plugin-51-1-36-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}