CVE-2024-12656

5.5 MEDIUM

📋 TL;DR

This vulnerability is a null pointer dereference in FabulaTech USB over Network Client's ftusbbus2.sys driver, specifically in the IOCTL handler function 0x220448. It allows local attackers to cause a denial-of-service (system crash/BSOD) by sending specially crafted IOCTL requests. Only users of FabulaTech USB over Network Client version 6.0.6.1 are affected.

💻 Affected Systems

Products:
  • FabulaTech USB over Network Client
Versions: 6.0.6.1
Operating Systems: Windows
Default Config Vulnerable: ⚠️ Yes
Notes: Requires the ftusbbus2.sys driver to be loaded, which occurs when USB over Network Client is installed and running.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Local attacker causes kernel panic/BSOD leading to system downtime and potential data loss from unsaved work.

🟠

Likely Case

Local user or malware causes system crash requiring reboot, disrupting USB over Network functionality.

🟢

If Mitigated

With proper access controls, only authorized users could trigger the crash, limiting exposure.

🌐 Internet-Facing: LOW - Attack requires local access, cannot be exploited remotely.
🏢 Internal Only: MEDIUM - Local users or malware with execution privileges can cause system instability.

🎯 Exploit Status

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

Exploit code has been publicly disclosed. Attack requires local execution privileges to send IOCTL to driver.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None available - vendor did not respond to disclosure

Restart Required: No

Instructions:

No official patch available. Consider workarounds or alternative software.

🔧 Temporary Workarounds

Restrict driver access

windows

Modify driver permissions to prevent non-admin users from sending IOCTL requests

icacls "C:\Windows\System32\drivers\ftusbbus2.sys" /deny Users:(R,X)
Requires administrative privileges and may break functionality for standard users

Disable or uninstall USB over Network Client

windows

Remove vulnerable component if not essential

Uninstall via Control Panel > Programs and Features
sc stop "USB over Network Service"
sc delete "USB over Network Service"

🧯 If You Can't Patch

  • Implement strict local access controls to limit who can execute code on affected systems
  • Monitor for crash dumps or system events related to ftusbbus2.sys driver failures

🔍 How to Verify

Check if Vulnerable:

Check if ftusbbus2.sys driver version 6.0.6.1 is present in C:\Windows\System32\drivers\

Check Version:

powershell Get-Item "C:\Windows\System32\drivers\ftusbbus2.sys" | Select-Object VersionInfo

Verify Fix Applied:

Verify driver version has changed from 6.0.6.1 or driver has been removed

📡 Detection & Monitoring

Log Indicators:

  • Windows Event Log System crashes with BugCheck codes
  • Application logs showing USB over Network service failures

Network Indicators:

  • None - local exploit only

SIEM Query:

EventID=41 OR Source="USB over Network" OR ProcessName="ftusbbus2.sys"

🔗 References

📤 Share & Export