Key Takeaways
- Rasmus Moorats showed that the Creative Sound Blaster Katana V2X can be compromised over Bluetooth Low Energy from ~15 m away, without any pairing or physical interaction.
- The vulnerability stems from an unauthenticated Creative Transfer Protocol (CTP) interface and the lack of cryptographic firmware signing, allowing an attacker to flash arbitrary firmware.
- By rewriting the USB descriptor set, the compromised soundbar can masquerade as a keyboard and inject keystrokes into the attached PC on every boot.
- Creative’s response, mediated through Singapore’s SingCERT, dismissed the issue as non‑risky and offered no official patch, leaving users to rely on a community‑provided mitigation tool.
- The case echoes earlier BadUSB attacks but removes the need for a malicious USB device, highlighting a broader trend of insufficient Bluetooth authentication in consumer peripherals.
Overview of the Discovery
Security researcher Rasmus Moorats published a detailed blog post on June 3 describing how he hijacked the Creative Sound Blaster Katana V2X gaming soundbar. Using a laptop equipped with a Bluetooth adapter, he was able to connect to the soundbar’s Bluetooth Low Energy (BLE) interface from roughly 16 yards (15 meters) away. No pairing request, PIN entry, or physical contact was required; the device accepted connections from any nearby host. Once connected, Moorats could read and modify the soundbar’s settings and, critically, flash new firmware over the air.
The Creative Transfer Protocol (CTP) Weakness
The Katana V2X communicates with Creative’s desktop application via a proprietary protocol Moorats labeled the Creative Transfer Protocol (CTP). Over USB, CTP enforces a challenge‑response handshake before accepting commands, providing a basic level of authentication. Over BLE, however, the same protocol lacks any authentication or pairing step; it accepts the identical command set from any device within range. This oversight allows an attacker to query the speaker’s current configuration, alter parameters such as volume or EQ settings, and push arbitrary firmware images without the user’s knowledge.
Absence of Firmware Signing
Compounding the BLE authentication flaw, the firmware images transferred to the Katana V2X are not cryptographically signed. Instead, they are protected only by a SHA‑256 checksum that Moorats could recompute after modifying the binary. Because the device does not verify a signature before accepting the image, an attacker can substitute a malicious firmware bundle that passes the checksum test but carries unintended functionality. This lack of code‑signing is a fundamental oversight in the device’s secure boot process.
Weaponizing the Firmware: USB Keyboard Emulation
Moorats edited the soundbar’s USB descriptor table so that, in addition to its native media‑control functions, the device reported itself as a USB Human Interface Device (HID) keyboard. He then replaced an unused diagnostic task in the speaker’s FreeRTOS‑based firmware with a routine that waits for the USB subsystem to initialize, then types and executes a command on every system boot. His proof‑of‑concept printed the string “echo pwned” to demonstrate code execution, but the same mechanism could launch PowerShell, download and run a payload, or establish a reverse shell—all without any user interaction.
Relation to BadUSB and Prior Bluetooth Flaws
The technique mirrors the classic BadUSB attack demonstrated by Karsten Nohl and Jakob Lell at Black Hat 2014, where malicious USB devices injected keystrokes after being physically plugged in. Moorats’ advance is significant because it removes the requirement for a rogue USB dongle; the compromised peripheral is a trusted piece of hardware the victim already owns and uses daily, altered remotely via Bluetooth. Similar patterns have appeared in other consumer gear, such as internet‑connected beds that exposed home networks and the BlueBorne vulnerabilities that let attackers seize control of Bluetooth devices without pairing.
Challenges in Responsible Disclosure
Getting a response from Creative proved difficult. The company provides only a generic web‑form for support, and Moorats’ initial two attempts went unanswered. He therefore routed his report through Singapore’s Cyber Emergency Response Team (SingCERT), which acted as an intermediary. After nearly two months, Creative replied that they “do not consider this to be a vulnerability, as it does not present a cybersecurity risk.” The firm declined to issue a patch or acknowledge the issue as a security concern, effectively leaving the remediation burden to the researcher and the user community.
Community Mitigation Tool
In the absence of an official fix, Moorats released a utility that downloads the legitimate Katana V2X firmware from Creative’s servers, strips out the vulnerable CTP‑over‑BLE functionality, and reflashes the device via USB. Applying this mitigation prevents attackers from exploiting the Bluetooth interface but may break compatibility with Creative’s mobile app, which relies on the same BTP channel for settings synchronization. Moorats noted that adding proper authentication would require access to the speaker’s source code or a firmware‑signing key—resources not available to outsiders.
Operational Details: Persistent Bluetooth
An additional concern highlighted by Moorats is that the Katana V2X’s Bluetooth radio remains active even when the speaker is in sleep or low‑power mode, with no user‑accessible option to disable it. This persistent exposure enlarges the attack window, as the device is continually discoverable and receptive to malicious BLE connections whenever it is powered. Users who rely on the soundbar for gaming or media consumption may inadvertently leave it vulnerable for extended periods.
Broader Implications for IoT and Peripheral Security
The Katana V2X case underscores a recurring theme in IoT and peripheral design: convenience features such as wireless configuration often outpace security considerations. Manufacturers frequently implement BLE for ease of use without pairing, assuming physical proximity provides sufficient protection—a assumption that fails when attackers can leverage readily available Bluetooth adapters and directional antennas. The incident reinforces the need for mandatory authentication, firmware signing, and clear user controls to disable wireless interfaces when not required.
Conclusion
Rasmus Moorats’ research demonstrates that a widely trusted gaming soundbar can be turned into a covert keyboard injector through a simple, unauthenticated Bluetooth link. The vulnerability arises from a combination of unauthenticated CTP over BLE, unsigned firmware, and a perpetually active Bluetooth radio. Despite responsible disclosure efforts, Creative’s dismissal of the issue leaves users reliant on community‑driven mitigations. The episode serves as a stark reminder that securing wireless interfaces in consumer hardware is not optional but essential to prevent attackers from repurposing trusted devices as launchpads for broader system compromise.

