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

CVE-2026-4733

Published: 2026-03-24 04:17:26
Last Modified: 2026-04-30 16:01:57

Description

Exposure of Sensitive Information to an Unauthorized Actor vulnerability in ixray-team ixray-1.6-stcop.This issue affects ixray-1.6-stcop: before 1.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:N/A:L

Configurations (Affected Products)

No configuration data available.

ixray-1.6-stcop < 1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_cve_2026_4733(target_url): """ Proof of Concept for CVE-2026-4733. Checks for sensitive information disclosure in ixray-1.6-stcop. """ # Hypothetical endpoint that might leak information based on typical info disclosure flaws # Replace with actual vulnerable endpoint if known endpoint = "/sensitive-path-or-config" try: response = requests.get(f"{target_url}{endpoint}", timeout=10) # Check if the response contains indicators of sensitive data if response.status_code == 200: print("[+] Potential vulnerability detected!") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Length: {len(response.text)}") print(f"[+] Snippet: {response.text[:200]}") else: print(f"[-] Target returned status code: {response.status_code}") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": target = "http://127.0.0.1:8080" # Change target IP check_cve_2026_4733(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4733", "sourceIdentifier": "[email protected]", "published": "2026-03-24T04:17:25.763", "lastModified": "2026-04-30T16:01:57.470", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive Information to an Unauthorized Actor vulnerability in ixray-team ixray-1.6-stcop.This issue affects ixray-1.6-stcop: before 1.3."}, {"lang": "es", "value": "Vulnerabilidad de Exposición de Información Sensible a un Actor No Autorizado en ixray-team ixray-1.6-stcop. Este problema afecta a ixray-1.6-stcop: anterior a 1.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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "references": [{"url": "https://github.com/ixray-team/ixray-1.6-stcop/pull/259", "source": "[email protected]"}]}}