BleedingTooth: critical kernel Bluetooth vulnerability
Posted Oct 14, 2020 17:55 UTC (Wed)
by Liskni_si (guest, #91943)
[Link] (6 responses)
Posted Oct 14, 2020 18:36 UTC (Wed)
by compudj (subscriber, #43335)
[Link] (5 responses)
Posted Oct 14, 2020 20:31 UTC (Wed)
by compudj (subscriber, #43335)
[Link] (4 responses)
commit a2ec905d1e16 ("Bluetooth: fix kernel oops in store_pending_adv_report") appears to have reached upstream.
All fixes from Intel don't even appear in master, even less in v5.9:
https://lore.kernel.org/linux-bluetooth/20200806181714.32...
It appears that Intel's security advisory is wrong when saying "Intel recommends updating the Linux kernel to version 5.9 or later."
Posted Oct 15, 2020 6:32 UTC (Thu)
by mkubecek (guest, #130791)
[Link]
Posted Oct 18, 2020 14:30 UTC (Sun)
by gotti79 (guest, #142593)
[Link] (2 responses)
https://lore.kernel.org/linux-bluetooth/20200806181714.32...
Here the part
Seems to be wrong as they set rsp.id only to memset it to zero afterwards.
Posted Oct 18, 2020 15:29 UTC (Sun)
by Liskni_si (guest, #91943)
[Link] (1 responses)
Posted Oct 18, 2020 18:29 UTC (Sun)
by gotti79 (guest, #142593)
[Link]
I do some kernel stuff and the stable kernels are not as stable as they were before so instead of complaining and fixing the issues I tried sending a patch to mainline the better idea.
Thanks for the link to the other patch which I will also look into as I need to fix this issue for 5.4.x and 5.9.x at work anyways. I added the information to the kernel mailinglist so other know also of this.
Posted Oct 14, 2020 20:21 UTC (Wed)
by nix (subscriber, #2304)
[Link] (10 responses)
Wonderful.
Posted Oct 14, 2020 23:23 UTC (Wed)
by seth.arnold (subscriber, #88398)
[Link] (9 responses)
This is part of how Android phones have higher-quality codecs and protocols than Linux desktops.
Thanks
Posted Oct 15, 2020 0:22 UTC (Thu)
by khim (subscriber, #9252)
[Link] (5 responses)
When it was first introduced it was, actually, inferior to BlueZ.
But of course with lots of testing and billions of phones …Android's implementation eventually become better.
Not even sure what's the morale of that story…
Posted Oct 15, 2020 2:42 UTC (Thu)
by pabs (subscriber, #43278)
[Link] (3 responses)
Posted Oct 15, 2020 8:29 UTC (Thu)
by fatherlinux (subscriber, #93873)
[Link] (2 responses)
Also, the Fountain of Youth can extend your life indefinitely....
Posted Oct 16, 2020 9:04 UTC (Fri)
by cpitrat (subscriber, #116459)
[Link] (1 responses)
And yet quite often Google gives up. Well, sometimes it gives up after it succeeds ...
Posted Oct 16, 2020 13:27 UTC (Fri)
by clump (subscriber, #27801)
[Link]
Posted Oct 15, 2020 7:39 UTC (Thu)
by bluss (guest, #47454)
[Link]
Posted Oct 15, 2020 10:42 UTC (Thu)
by rvolgers (guest, #63218)
[Link] (2 responses)
I am worried about all the little semi-embedded boards such as Raspberry Pi's that are easily overlooked... not sure if they are vulnerable by default though, or if bluetooth has to be enabled.
Posted Oct 15, 2020 12:47 UTC (Thu)
by zdzichu (subscriber, #17118)
[Link] (1 responses)
Posted Oct 19, 2020 14:46 UTC (Mon)
by WolfWings (subscriber, #56790)
[Link]
Posted Oct 15, 2020 15:52 UTC (Thu)
by chder (subscriber, #96621)
[Link] (9 responses)
Posted Oct 15, 2020 15:56 UTC (Thu)
by zdzichu (subscriber, #17118)
[Link] (2 responses)
Posted Oct 15, 2020 21:19 UTC (Thu)
by bojan (subscriber, #14302)
[Link]
Posted Oct 15, 2020 22:58 UTC (Thu)
by chder (subscriber, #96621)
[Link]
Did Fedora get them backported? I guess I could go dig through Koji to see what got built.
Posted Oct 16, 2020 8:33 UTC (Fri)
by maage (subscriber, #142306)
[Link]
Changelogs for kernel-5.8.15-201.fc32.x86_64, kernel-core-5.8.15-201.fc32.x86_64, kernel-devel-5.8.15-201.fc32.x86_64, kernel-modules-5.8.15-201.fc32.x86_64, kernel-modules-extra-5.8.15-201.fc32.x86_64
* ke loka 14 00.00.00 2020 Justin M. Forbes <...> - 5.8.15-200
* ke loka 07 00.00.00 2020 Justin M. Forbes <...> - 5.8.14-200
Posted Oct 17, 2020 12:15 UTC (Sat)
by h2g2bob (subscriber, #130451)
[Link] (4 responses)
Posted Oct 19, 2020 15:37 UTC (Mon)
by bluss (guest, #47454)
[Link] (3 responses)
Posted Oct 19, 2020 21:11 UTC (Mon)
by wx (guest, #103979)
[Link] (2 responses)
Neither another fix (https://lore.kernel.org/linux-bluetooth/20201016180956.70...) also referred to above.
Posted Oct 20, 2020 8:44 UTC (Tue)
by bluss (guest, #47454)
[Link] (1 responses)
I looked at the diff and from what I can see, yes, the rsp.id = req->id being overwritten, is still an issue in 4.19.152-1
Posted Oct 20, 2020 15:39 UTC (Tue)
by pabs (subscriber, #43278)
[Link]
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
https://lore.kernel.org/linux-bluetooth/20200806181714.32...
https://lore.kernel.org/linux-bluetooth/20200806181714.32...
https://lore.kernel.org/linux-bluetooth/20200806181714.32...
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
@@ -376,6 +383,8 @@ static int a2mp_getampassoc_req(struct amp_mgr *mgr, struct sk_buff *skb,
struct a2mp_amp_assoc_rsp rsp;
rsp.id = req->id;
+ memset(&rsp, 0, sizeof(rsp));
+
if (tmp) {
rsp.status = A2MP_STATUS_COLLISION_OCCURED;
amp_mgr_put(tmp);
BleedingTooth: critical kernel Bluetooth vulnerability
I see you posted a patch yourself: https://lore.kernel.org/linux-bluetooth/1603008332-8402-1..., perhaps the recipients of that should be directed towards Luiz's thread instead?
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
Am I wrong?
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
* to loka 15 00.00.00 2020 Justin M. Forbes <...> - 5.8.15-201
- Fix BleedingTooth CVE-2020-12351 CVE-2020-12352 (rhbz 1886521 1888439 1886529 1888440)
- Linux v5.8.15
- Fix CVE-2020-16119 (rhbz 1886374 1888083)
- Linux v5.8.14
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability
BleedingTooth: critical kernel Bluetooth vulnerability