CVE-2026-24870

3.7 LOW

📋 TL;DR

This CVE describes an information disclosure vulnerability in ixray-1.6-stcop software where sensitive information can be accessed by unauthorized actors. The vulnerability affects versions before 1.3 of the ixray-1.6-stcop component, potentially exposing confidential data to attackers.

💻 Affected Systems

Products:
  • ixray-team ixray-1.6-stcop
Versions: All versions before 1.3
Operating Systems: Not specified, likely cross-platform
Default Config Vulnerable: ⚠️ Yes
Notes: Specific configuration details not provided in CVE description

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete exposure of sensitive configuration data, credentials, or system information leading to further compromise of the system or adjacent systems.

🟠

Likely Case

Limited exposure of configuration details or internal system information that could aid attackers in reconnaissance or planning further attacks.

🟢

If Mitigated

Minimal impact with proper access controls and network segmentation limiting exposure to authorized users only.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

CWE-200 typically involves simple information disclosure that doesn't require complex exploitation techniques

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.3 or later

Vendor Advisory: https://github.com/ixray-team/ixray-1.6-stcop/pull/258

Restart Required: Yes

Instructions:

1. Update ixray-1.6-stcop to version 1.3 or later
2. Restart the service/application
3. Verify the update was successful

🔧 Temporary Workarounds

Network Access Restriction

linux

Restrict network access to the vulnerable service to only trusted IP addresses or networks

iptables -A INPUT -p tcp --dport [PORT] -s [TRUSTED_IP] -j ACCEPT
iptables -A INPUT -p tcp --dport [PORT] -j DROP

Authentication Enforcement

all

Implement or enforce authentication requirements for accessing the service

🧯 If You Can't Patch

  • Implement strict network segmentation to isolate the vulnerable system
  • Deploy web application firewall (WAF) rules to block information disclosure patterns

🔍 How to Verify

Check if Vulnerable:

Check the installed version of ixray-1.6-stcop. If version is below 1.3, the system is vulnerable.

Check Version:

Check application documentation for version command, typically something like 'ixray --version' or check package manager

Verify Fix Applied:

Verify the version is 1.3 or higher after applying the update

📡 Detection & Monitoring

Log Indicators:

  • Unusual access patterns to sensitive endpoints
  • Multiple failed authentication attempts followed by information disclosure

Network Indicators:

  • Unusual traffic to service ports from unauthorized sources
  • Information disclosure in HTTP responses

SIEM Query:

source="ixray" AND (event_type="access" OR event_type="error") AND (message="*sensitive*" OR message="*config*" OR message="*secret*")

🔗 References

📤 Share & Export