CVE-2025-13809

6.3 MEDIUM

📋 TL;DR

This CVE describes a Server-Side Request Forgery (SSRF) vulnerability in orionsec's orion-ops software. Attackers can manipulate SSH connection parameters (host, port, username, password, authType) to make the server send unauthorized requests to internal systems. Organizations using vulnerable versions of orion-ops are affected.

💻 Affected Systems

Products:
  • orionsec orion-ops
Versions: Up to commit 5925824997a3109651bbde07460958a7be249ed1
Operating Systems: All platforms running orion-ops
Default Config Vulnerable: ⚠️ Yes
Notes: Affects the SSH Connection Handler component in MachineInfoController.java

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could pivot to internal systems, access sensitive data, or perform internal network reconnaissance leading to further compromise.

🟠

Likely Case

Unauthorized access to internal services, data exfiltration from internal systems, or scanning of internal network resources.

🟢

If Mitigated

Limited to accessing only allowed internal services if proper network segmentation and input validation are in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit requires access to the SSH connection functionality; public proof-of-concept available

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None available

Restart Required: Yes

Instructions:

1. Monitor vendor for patch release
2. Apply patch when available
3. Restart orion-ops service

🔧 Temporary Workarounds

Input Validation

all

Implement strict input validation for SSH connection parameters

Network Segmentation

all

Restrict orion-ops server's network access to only required internal services

🧯 If You Can't Patch

  • Implement web application firewall rules to block SSRF patterns
  • Disable or restrict SSH connection functionality if not required

🔍 How to Verify

Check if Vulnerable:

Check if your orion-ops version is at or before commit 5925824997a3109651bbde07460958a7be249ed1

Check Version:

Check git commit hash or version metadata in orion-ops installation

Verify Fix Applied:

Verify that input validation is implemented for SSH connection parameters in MachineInfoController.java

📡 Detection & Monitoring

Log Indicators:

  • Unusual SSH connection attempts to internal IPs
  • Requests to unexpected internal services from orion-ops server

Network Indicators:

  • Outbound connections from orion-ops server to unexpected internal services
  • SSH traffic to non-standard internal ports

SIEM Query:

source="orion-ops" AND (dest_ip IN internal_network_range) AND protocol="ssh"

🔗 References

📤 Share & Export