CVE-2024-34050

7.5 HIGH

📋 TL;DR

This vulnerability in rimedo-ts 0.1.1 allows attackers to cause a denial-of-service (DoS) by triggering a slice bounds out-of-range panic in the reader.go component. It affects systems running the Open Networking Foundation SD-RAN Rimedo rimedo-ts software, specifically version 0.1.1. The vulnerability occurs when processing malformed input that causes array index errors in the uint64 conversion function.

💻 Affected Systems

Products:
  • Open Networking Foundation SD-RAN Rimedo rimedo-ts
Versions: 0.1.1
Operating Systems: Linux
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects rimedo-ts version 0.1.1. The vulnerability is in the reader.go file specifically in the uint64 conversion function that processes input data.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete service disruption of the SD-RAN rimedo-ts component, potentially affecting network slicing functionality in 5G networks and causing cascading failures in dependent systems.

🟠

Likely Case

Service crash and restart of the rimedo-ts component, resulting in temporary disruption of network slicing operations until the process recovers.

🟢

If Mitigated

Controlled restart of the affected component with minimal service interruption if proper monitoring and auto-restart mechanisms are in place.

🌐 Internet-Facing: MEDIUM - While the component may be internet-facing in some deployments, exploitation requires sending specifically crafted input to the vulnerable function.
🏢 Internal Only: HIGH - In typical SD-RAN deployments, this component runs in internal network segments where attackers with internal access could exploit it to disrupt network operations.

🎯 Exploit Status

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

The vulnerability can be triggered by sending malformed input to the affected function, but specific exploit details are not publicly documented. The CWE-129 classification indicates improper validation of array index bounds.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Check GitHub repository for latest version > 0.1.1

Vendor Advisory: https://github.com/onosproject/rimedo-ts/issues/16

Restart Required: Yes

Instructions:

1. Check the rimedo-ts GitHub repository for the latest release. 2. Update to a version that includes bounds checking fixes. 3. Restart the rimedo-ts service. 4. Verify the fix by testing with valid and malformed inputs.

🔧 Temporary Workarounds

Input Validation Wrapper

linux

Implement input validation before data reaches the vulnerable function to ensure array bounds are checked

# Custom implementation required based on deployment

Process Monitoring and Auto-restart

linux

Configure monitoring to detect and automatically restart the rimedo-ts process if it crashes

systemctl enable rimedo-ts
systemctl start rimedo-ts
# Configure monitoring in systemd or supervisor

🧯 If You Can't Patch

  • Implement network segmentation to isolate rimedo-ts from untrusted networks
  • Deploy rate limiting and input sanitization at the network perimeter

🔍 How to Verify

Check if Vulnerable:

Check the rimedo-ts version: grep -r 'version' /path/to/rimedo-ts/config or check package manager

Check Version:

rimedo-ts --version 2>/dev/null || grep version /path/to/rimedo-ts/README.md

Verify Fix Applied:

Test with sample inputs that previously caused crashes and verify the service remains stable

📡 Detection & Monitoring

Log Indicators:

  • panic: runtime error: slice bounds out of range
  • rimedo-ts process crashes with stack trace showing reader.go
  • unexpected service restarts

Network Indicators:

  • Unusual traffic patterns to rimedo-ts service port
  • Connection attempts with malformed data packets

SIEM Query:

source="rimedo-ts" AND ("panic" OR "slice bounds" OR "out of range")

🔗 References

📤 Share & Export