CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
1–10 of 16 posts
Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#2Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#3Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#4I recall hearing recently that Chrome has access to midi devices ...
Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#5Video demo right here https://www.youtube.com/watch?v=lfl1NJn1nvo
Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#6Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#7Video demo right here https://www.youtube.com/watch?v=lfl1NJn1nvo
[deleted]
Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#8There's a narrow problem here, which is the bug in the device driver. That'll be fixed of course, now that it's gotten attention. But fixing this bug will not solve the problem, because there is a truly enormous number of different USB device drivers, most of which are poorly audited, run in kernel space, and correspond to unusual hardware. The real problem is that plugging in a device can cause any obscure device driver to load, without user confirmation. So for example, someone can plug in a cell phone, and the cell phone can claim to be an obscure kind of printer that no one has seen since the 90s, and the system will go ahead and load that device driver.
The solution is to require user confirmation before accepting any USB device that hasn't been seen before. Just a simple popup: You have connected [type of device], Ok/Cancel. The only tricky part is input devices like keyboards and mice, where this could create a chicken-and-egg problem with the confirmation prompt. (And devices pretending to be keyboards can be dangerous; they can type commands). Fortunately, there is a solution, albeit one which will take some programming work: accept keyboard input from keyboards that have either been confirmed by a prompt or have typed the user's login password. (Since some "keyboards" are actually things like barcode scanners).
Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#9Short version: A bug in a Linux USB device driver can be caused to take over a Linux machine by plugging in a malicious USB device. An attacker would either use a custom USB dongle, or a programmable device with a USB connection such as a cell phone. There's a narrow problem here, which is the bug in the device driver. That'll be fixed of course, now that it's gotten attention. But fixing this bug will not solve the…
Re: CVE-2016-2384: arbitrary code execution due to a bug in usb-midi linux driver
#10Short version: A bug in a Linux USB device driver can be caused to take over a Linux machine by plugging in a malicious USB device. An attacker would either use a custom USB dongle, or a programmable device with a USB connection such as a cell phone. There's a narrow problem here, which is the bug in the device driver. That'll be fixed of course, now that it's gotten attention. But fixing this bug will not solve the…