CVE-2025-65239
📋 TL;DR
This vulnerability allows attackers with low-level privileges to read server logs via the /aux1/ocussd/trace endpoint in OpenCode Systems USSD Gateway. It affects organizations using OpenCode Systems USSD Gateway OC Release:5 version 6.13.11. The improper access control exposes potentially sensitive log information to unauthorized users.
💻 Affected Systems
- OpenCode Systems USSD Gateway OC
📦 What is this software?
Ussd Gateway by Opencode
⚠️ Risk & Real-World Impact
Worst Case
Attackers could extract sensitive information from logs including user data, system configurations, or authentication details, potentially enabling further attacks.
Likely Case
Low-privilege users or attackers who gain initial access can read server logs containing operational data, potentially identifying other vulnerabilities or sensitive information.
If Mitigated
With proper access controls, only authorized administrators can access server logs, limiting exposure of sensitive information.
🎯 Exploit Status
Exploitation requires low-level privileges. The vulnerability is documented in public repositories with technical details.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Not available
Vendor Advisory: Not available
Restart Required: No
Instructions:
No official patch available. Check vendor website for updates or apply workarounds.
🔧 Temporary Workarounds
Restrict endpoint access
allImplement access control rules to restrict the /aux1/ocussd/trace endpoint to authorized administrators only.
# Configure web server or application firewall rules to restrict access to /aux1/ocussd/trace
Disable trace endpoint
allTemporarily disable or remove the vulnerable endpoint if not required for operations.
# Modify application configuration to disable /aux1/ocussd/trace endpoint
🧯 If You Can't Patch
- Implement network segmentation to isolate the USSD gateway from untrusted networks.
- Enhance monitoring of access to the /aux1/ocussd/trace endpoint and review logs for unauthorized access attempts.
🔍 How to Verify
Check if Vulnerable:
Attempt to access the /aux1/ocussd/trace endpoint with low-privilege credentials. If server logs are accessible, the system is vulnerable.
Check Version:
Check application version through administrative interface or configuration files specific to OpenCode Systems USSD Gateway.
Verify Fix Applied:
Verify that low-privilege users cannot access the /aux1/ocussd/trace endpoint after implementing access controls.
📡 Detection & Monitoring
Log Indicators:
- Unauthorized access attempts to /aux1/ocussd/trace endpoint
- Multiple log access requests from non-admin users
Network Indicators:
- HTTP GET requests to /aux1/ocussd/trace from unauthorized IPs or users
SIEM Query:
source="ussd_gateway" AND (uri="/aux1/ocussd/trace" AND user_role!="admin")