2016-03-09 21:07:11 |
Steve Beattie |
bug |
|
|
added bug |
2016-03-09 21:07:24 |
Steve Beattie |
linux (Ubuntu): status |
New |
Confirmed |
|
2016-03-09 21:07:28 |
Steve Beattie |
linux (Ubuntu): importance |
Undecided |
High |
|
2016-03-10 07:23:22 |
Steve Beattie |
information type |
Private Security |
Public Security |
|
2016-03-10 14:12:36 |
Tim Gardner |
nominated for series |
|
Ubuntu Xenial |
|
2016-03-10 14:12:36 |
Tim Gardner |
bug task added |
|
linux (Ubuntu Xenial) |
|
2016-03-10 14:12:47 |
Tim Gardner |
linux (Ubuntu Xenial): status |
Confirmed |
In Progress |
|
2016-03-10 14:12:47 |
Tim Gardner |
linux (Ubuntu Xenial): assignee |
|
Tim Gardner (timg-tpi) |
|
2016-03-10 17:03:31 |
Chris J Arges |
nominated for series |
|
Ubuntu Wily |
|
2016-03-10 17:03:31 |
Chris J Arges |
bug task added |
|
linux (Ubuntu Wily) |
|
2016-03-10 17:03:31 |
Chris J Arges |
nominated for series |
|
Ubuntu Vivid |
|
2016-03-10 17:03:31 |
Chris J Arges |
bug task added |
|
linux (Ubuntu Vivid) |
|
2016-03-10 17:03:31 |
Chris J Arges |
nominated for series |
|
Ubuntu Precise |
|
2016-03-10 17:03:31 |
Chris J Arges |
bug task added |
|
linux (Ubuntu Precise) |
|
2016-03-10 17:03:31 |
Chris J Arges |
nominated for series |
|
Ubuntu Trusty |
|
2016-03-10 17:03:31 |
Chris J Arges |
bug task added |
|
linux (Ubuntu Trusty) |
|
2016-03-10 17:03:52 |
Chris J Arges |
bug task added |
|
linux-lts-utopic (Ubuntu) |
|
2016-03-10 17:04:03 |
Chris J Arges |
linux-lts-utopic (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-10 17:04:14 |
Chris J Arges |
linux-lts-utopic (Ubuntu Vivid): status |
New |
Invalid |
|
2016-03-10 17:04:26 |
Chris J Arges |
linux-lts-utopic (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-10 17:30:30 |
Chris J Arges |
linux-lts-utopic (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-10 17:45:30 |
Tim Gardner |
linux (Ubuntu Xenial): status |
In Progress |
Fix Committed |
|
2016-03-10 18:03:14 |
Chris J Arges |
linux (Ubuntu Wily): status |
New |
In Progress |
|
2016-03-10 18:03:14 |
Chris J Arges |
linux (Ubuntu Wily): assignee |
|
Chris J Arges (arges) |
|
2016-03-10 19:08:06 |
Chris J Arges |
linux (Ubuntu Trusty): status |
New |
In Progress |
|
2016-03-10 19:08:06 |
Chris J Arges |
linux (Ubuntu Trusty): assignee |
|
Chris J Arges (arges) |
|
2016-03-10 19:08:15 |
Chris J Arges |
linux (Ubuntu Vivid): status |
New |
In Progress |
|
2016-03-10 19:08:15 |
Chris J Arges |
linux (Ubuntu Vivid): assignee |
|
Chris J Arges (arges) |
|
2016-03-10 19:08:30 |
Chris J Arges |
linux-lts-utopic (Ubuntu Trusty): status |
New |
In Progress |
|
2016-03-10 19:08:30 |
Chris J Arges |
linux-lts-utopic (Ubuntu Trusty): assignee |
|
Chris J Arges (arges) |
|
2016-03-10 19:11:44 |
Chris J Arges |
description |
[From https://code.google.com/p/google-security-research/issues/detail?id=758 ]
A memory corruption vulnerability exists in the IPT_SO_SET_REPLACE ioctl in the netfilter code for iptables support. This ioctl is can be triggered by an unprivileged user on PF_INET sockets when unprivileged user namespaces are available (CONFIG_USER_NS=y). Android does not enable this option, but desktop/server distributions and Chrome OS will commonly enable this to allow for containers support or sandboxing.
In the mark_source_chains function (net/ipv4/netfilter/ip_tables.c) it is possible for a user-supplied ipt_entry structure to have a large next_offset field. This field is not bounds checked prior to writing a counter value at the supplied offset:
newpos = pos + e->next_offset;
...
e = (struct ipt_entry *) (entry0 + newpos);
e->counters.pcnt = pos;
This means that an out of bounds 32-bit write can occur in a 64kb range from the allocated heap entry, with a controlled offset and a partially controlled write value ("pos") or zero. The attached proof-of-concept (netfilter_setsockopt_v3.c) triggers the corruption multiple times to set adjacent heap structures to zero.
This issue affects (at least) kernel versions 3.10, 3.18 and 4.4. It appears that a similar codepath is accessible via arp_tables.c/ARPT_SO_SET_REPLACE as well. |
[Impact]
[From https://code.google.com/p/google-security-research/issues/detail?id=758 ]
A memory corruption vulnerability exists in the IPT_SO_SET_REPLACE ioctl in the netfilter code for iptables support. This ioctl is can be triggered by an unprivileged user on PF_INET sockets when unprivileged user namespaces are available (CONFIG_USER_NS=y). Android does not enable this option, but desktop/server distributions and Chrome OS will commonly enable this to allow for containers support or sandboxing.
In the mark_source_chains function (net/ipv4/netfilter/ip_tables.c) it is possible for a user-supplied ipt_entry structure to have a large next_offset field. This field is not bounds checked prior to writing a counter value at the supplied offset:
newpos = pos + e->next_offset;
...
e = (struct ipt_entry *) (entry0 + newpos);
e->counters.pcnt = pos;
This means that an out of bounds 32-bit write can occur in a 64kb range from the allocated heap entry, with a controlled offset and a partially controlled write value ("pos") or zero. The attached proof-of-concept (netfilter_setsockopt_v3.c) triggers the corruption multiple times to set adjacent heap structures to zero.
This issue affects (at least) kernel versions 3.10, 3.18 and 4.4. It appears that a similar codepath is accessible via arp_tables.c/ARPT_SO_SET_REPLACE as well.
[Fix]
http://thread.gmane.org/gmane.comp.security.firewalls.netfilter.devel/62150
[Test Case]
Download v3 testcase from https://code.google.com/p/google-security-research/issues/detail?id=758
gcc net*v3.c -o v3
./v3 |
|
2016-03-10 19:15:34 |
Chris J Arges |
linux (Ubuntu Trusty): status |
In Progress |
New |
|
2016-03-10 19:15:34 |
Chris J Arges |
linux (Ubuntu Trusty): assignee |
Chris J Arges (arges) |
|
|
2016-03-10 19:25:40 |
Chris J Arges |
linux (Ubuntu Vivid): status |
In Progress |
New |
|
2016-03-10 19:25:51 |
Chris J Arges |
linux-lts-utopic (Ubuntu Trusty): status |
In Progress |
New |
|
2016-03-10 19:25:51 |
Chris J Arges |
linux-lts-utopic (Ubuntu Trusty): assignee |
Chris J Arges (arges) |
|
|
2016-03-10 20:43:47 |
Chris J Arges |
linux (Ubuntu Trusty): status |
New |
In Progress |
|
2016-03-10 20:43:47 |
Chris J Arges |
linux (Ubuntu Trusty): assignee |
|
Chris J Arges (arges) |
|
2016-03-10 20:44:13 |
Chris J Arges |
linux (Ubuntu Vivid): status |
New |
In Progress |
|
2016-03-10 20:44:26 |
Chris J Arges |
linux-lts-utopic (Ubuntu Trusty): status |
New |
In Progress |
|
2016-03-10 20:44:26 |
Chris J Arges |
linux-lts-utopic (Ubuntu Trusty): assignee |
|
Chris J Arges (arges) |
|
2016-03-10 21:32:19 |
Brad Figg |
linux (Ubuntu Precise): status |
New |
Fix Committed |
|
2016-03-10 21:57:37 |
Brad Figg |
linux (Ubuntu Wily): status |
In Progress |
Fix Committed |
|
2016-03-10 23:03:30 |
Brad Figg |
linux (Ubuntu Vivid): status |
In Progress |
Fix Committed |
|
2016-03-10 23:03:44 |
Brad Figg |
linux (Ubuntu Trusty): status |
In Progress |
Fix Committed |
|
2016-03-11 00:26:23 |
Steve Beattie |
tags |
|
kernel-cve-skip-description |
|
2016-03-11 02:36:41 |
Andy Whitcroft |
linux-lts-utopic (Ubuntu Trusty): importance |
Undecided |
Critical |
|
2016-03-11 02:36:54 |
Andy Whitcroft |
linux (Ubuntu Wily): importance |
Undecided |
Critical |
|
2016-03-11 02:37:11 |
Andy Whitcroft |
linux (Ubuntu Vivid): importance |
Undecided |
Critical |
|
2016-03-11 02:37:25 |
Andy Whitcroft |
linux (Ubuntu Trusty): importance |
Undecided |
Critical |
|
2016-03-11 02:38:09 |
Andy Whitcroft |
linux (Ubuntu Precise): importance |
Undecided |
Critical |
|
2016-03-11 02:38:09 |
Andy Whitcroft |
linux (Ubuntu Precise): assignee |
|
Chris J Arges (arges) |
|
2016-03-11 12:52:14 |
Andy Whitcroft |
linux-lts-utopic (Ubuntu Trusty): status |
In Progress |
Fix Committed |
|
2016-03-12 10:33:40 |
Andy Whitcroft |
bug task added |
|
linux-keystone (Ubuntu) |
|
2016-03-12 10:35:24 |
Andy Whitcroft |
bug task added |
|
linux-armadaxp (Ubuntu) |
|
2016-03-12 10:36:07 |
Andy Whitcroft |
linux-keystone (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-12 10:36:10 |
Andy Whitcroft |
linux-keystone (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-12 10:36:12 |
Andy Whitcroft |
linux-keystone (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-12 10:36:14 |
Andy Whitcroft |
linux-armadaxp (Ubuntu Vivid): status |
New |
Invalid |
|
2016-03-12 10:36:16 |
Andy Whitcroft |
linux-armadaxp (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-12 10:36:18 |
Andy Whitcroft |
linux-keystone (Ubuntu Vivid): status |
New |
Invalid |
|
2016-03-12 10:36:20 |
Andy Whitcroft |
linux-armadaxp (Ubuntu): status |
New |
Invalid |
|
2016-03-12 10:36:23 |
Andy Whitcroft |
linux-armadaxp (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-12 10:36:44 |
Andy Whitcroft |
linux-keystone (Ubuntu Trusty): status |
New |
Fix Committed |
|
2016-03-12 10:37:00 |
Andy Whitcroft |
linux-armadaxp (Ubuntu Precise): status |
New |
Fix Committed |
|
2016-03-12 10:37:35 |
Andy Whitcroft |
linux-keystone (Ubuntu Trusty): importance |
Undecided |
Critical |
|
2016-03-12 10:37:52 |
Andy Whitcroft |
linux-armadaxp (Ubuntu Precise): importance |
Undecided |
Critical |
|
2016-03-12 21:01:52 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-proposed/linux-lts-vivid |
|
2016-03-12 21:21:56 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-proposed/linux-lts-wily |
|
2016-03-13 14:03:24 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-proposed/linux-lts-xenial |
|
2016-03-14 10:13:51 |
Steve Beattie |
cve linked |
|
2016-3134 |
|
2016-03-14 13:14:39 |
Launchpad Janitor |
linux (Ubuntu Wily): status |
Fix Committed |
Fix Released |
|
2016-03-14 13:14:39 |
Launchpad Janitor |
cve linked |
|
2016-2384 |
|
2016-03-14 13:32:24 |
Launchpad Janitor |
linux (Ubuntu Precise): status |
Fix Committed |
Fix Released |
|
2016-03-14 14:01:42 |
Launchpad Janitor |
linux (Ubuntu Vivid): status |
Fix Committed |
Fix Released |
|
2016-03-14 14:09:00 |
Launchpad Janitor |
linux (Ubuntu Trusty): status |
Fix Committed |
Fix Released |
|
2016-03-14 14:11:23 |
Launchpad Janitor |
linux-lts-utopic (Ubuntu Trusty): status |
Fix Committed |
Fix Released |
|
2016-03-14 14:52:12 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-security/linux-lts-vivid |
|
2016-03-14 14:52:26 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-updates/linux-lts-vivid |
|
2016-03-15 00:27:45 |
Steve Beattie |
linux-lts-trusty (Ubuntu Precise): status |
New |
Fix Released |
|
2016-03-15 00:27:48 |
Steve Beattie |
linux-lts-trusty (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:27:50 |
Steve Beattie |
linux-lts-trusty (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:27:53 |
Steve Beattie |
linux-lts-trusty (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:27:55 |
Steve Beattie |
linux-lts-trusty (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:27:59 |
Steve Beattie |
linux-lts-trusty (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:28:02 |
Steve Beattie |
linux-lts-trusty (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:28:06 |
Steve Beattie |
linux-lts-trusty (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:28:09 |
Steve Beattie |
linux-lts-wily (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:28:11 |
Steve Beattie |
linux-lts-wily (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:28:14 |
Steve Beattie |
linux-lts-wily (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:28:17 |
Steve Beattie |
linux-lts-wily (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:28:20 |
Steve Beattie |
linux-lts-wily (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:28:24 |
Steve Beattie |
linux-lts-wily (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:28:26 |
Steve Beattie |
linux-lts-wily (Ubuntu Trusty): status |
New |
Fix Released |
|
2016-03-15 00:28:30 |
Steve Beattie |
linux-lts-wily (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:28:32 |
Steve Beattie |
linux-lts-quantal (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:28:35 |
Steve Beattie |
linux-lts-quantal (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:28:37 |
Steve Beattie |
linux-lts-quantal (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:28:40 |
Steve Beattie |
linux-lts-quantal (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:28:42 |
Steve Beattie |
linux-lts-quantal (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:28:45 |
Steve Beattie |
linux-lts-quantal (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:28:47 |
Steve Beattie |
linux-lts-quantal (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:28:50 |
Steve Beattie |
linux-lts-quantal (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:28:52 |
Steve Beattie |
linux (Ubuntu Precise): importance |
Critical |
High |
|
2016-03-15 00:28:55 |
Steve Beattie |
linux (Ubuntu Wily): importance |
Critical |
High |
|
2016-03-15 00:28:57 |
Steve Beattie |
linux (Ubuntu Trusty): importance |
Critical |
High |
|
2016-03-15 00:29:00 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Precise): status |
New |
Fix Released |
|
2016-03-15 00:29:03 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:29:06 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:29:09 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:29:12 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:29:15 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:29:18 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:29:20 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:29:22 |
Steve Beattie |
linux-lts-raring (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:29:25 |
Steve Beattie |
linux-lts-raring (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:29:27 |
Steve Beattie |
linux-lts-raring (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:29:31 |
Steve Beattie |
linux-lts-raring (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:29:33 |
Steve Beattie |
linux-lts-raring (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:29:35 |
Steve Beattie |
linux-lts-raring (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:29:38 |
Steve Beattie |
linux-lts-raring (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:29:40 |
Steve Beattie |
linux-lts-raring (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:31:29 |
Steve Beattie |
linux-armadaxp (Ubuntu Precise): importance |
Critical |
High |
|
2016-03-15 00:31:31 |
Steve Beattie |
linux-armadaxp (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:31:34 |
Steve Beattie |
linux-armadaxp (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:31:36 |
Steve Beattie |
linux-armadaxp (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:31:39 |
Steve Beattie |
linux-lts-xenial (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:31:42 |
Steve Beattie |
linux-lts-xenial (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:31:45 |
Steve Beattie |
linux-lts-xenial (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:31:49 |
Steve Beattie |
linux-lts-xenial (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:31:50 |
Steve Beattie |
linux-lts-xenial (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:31:54 |
Steve Beattie |
linux-lts-xenial (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:31:56 |
Steve Beattie |
linux-lts-xenial (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:31:58 |
Steve Beattie |
linux-lts-saucy (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:32:02 |
Steve Beattie |
linux-lts-saucy (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:32:04 |
Steve Beattie |
linux-lts-saucy (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:32:08 |
Steve Beattie |
linux-lts-saucy (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:32:10 |
Steve Beattie |
linux-lts-saucy (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:32:13 |
Steve Beattie |
linux-lts-saucy (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:32:15 |
Steve Beattie |
linux-lts-saucy (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:32:18 |
Steve Beattie |
linux-lts-saucy (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:32:21 |
Steve Beattie |
linux-manta (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:32:24 |
Steve Beattie |
linux-manta (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:32:26 |
Steve Beattie |
linux-manta (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:32:28 |
Steve Beattie |
linux-manta (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:32:30 |
Steve Beattie |
linux-manta (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:32:34 |
Steve Beattie |
linux-manta (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:32:37 |
Steve Beattie |
linux-lts-vivid (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:32:40 |
Steve Beattie |
linux-lts-vivid (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:32:42 |
Steve Beattie |
linux-lts-vivid (Ubuntu Wily): status |
New |
Invalid |
|
2016-03-15 00:32:45 |
Steve Beattie |
linux-lts-vivid (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:32:47 |
Steve Beattie |
linux-lts-vivid (Ubuntu Xenial): status |
New |
Invalid |
|
2016-03-15 00:32:50 |
Steve Beattie |
linux-lts-vivid (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:32:53 |
Steve Beattie |
linux-lts-vivid (Ubuntu Trusty): status |
New |
Fix Released |
|
2016-03-15 00:32:55 |
Steve Beattie |
linux-lts-vivid (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:32:57 |
Steve Beattie |
linux-raspi2 (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:33:00 |
Steve Beattie |
linux-raspi2 (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:33:03 |
Steve Beattie |
linux-raspi2 (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:33:06 |
Steve Beattie |
linux-raspi2 (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:33:09 |
Steve Beattie |
linux-raspi2 (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:33:13 |
Steve Beattie |
linux-raspi2 (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:33:16 |
Steve Beattie |
linux-mako (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:33:19 |
Steve Beattie |
linux-mako (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:33:21 |
Steve Beattie |
linux-mako (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:33:23 |
Steve Beattie |
linux-mako (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:33:26 |
Steve Beattie |
linux-mako (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:33:29 |
Steve Beattie |
linux-mako (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:33:31 |
Steve Beattie |
linux-lts-utopic (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:33:35 |
Steve Beattie |
linux-lts-utopic (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:33:41 |
Steve Beattie |
linux-lts-utopic (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:33:44 |
Steve Beattie |
linux-lts-utopic (Ubuntu Trusty): importance |
Critical |
High |
|
2016-03-15 00:33:47 |
Steve Beattie |
linux-goldfish (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:33:49 |
Steve Beattie |
linux-goldfish (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:33:52 |
Steve Beattie |
linux-goldfish (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:33:55 |
Steve Beattie |
linux-goldfish (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:33:57 |
Steve Beattie |
linux-goldfish (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:34:01 |
Steve Beattie |
linux-goldfish (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:34:05 |
Steve Beattie |
linux-flo (Ubuntu Precise): status |
New |
Invalid |
|
2016-03-15 00:34:08 |
Steve Beattie |
linux-flo (Ubuntu Precise): importance |
Undecided |
High |
|
2016-03-15 00:34:10 |
Steve Beattie |
linux-flo (Ubuntu Wily): importance |
Undecided |
High |
|
2016-03-15 00:34:12 |
Steve Beattie |
linux-flo (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-03-15 00:34:15 |
Steve Beattie |
linux-flo (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-15 00:34:19 |
Steve Beattie |
linux-flo (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-03-15 00:35:39 |
Steve Beattie |
linux-ti-omap4 (Ubuntu Vivid): status |
New |
Invalid |
|
2016-03-15 10:09:20 |
Launchpad Janitor |
linux-armadaxp (Ubuntu Precise): status |
Fix Committed |
Fix Released |
|
2016-03-15 10:16:38 |
Launchpad Janitor |
linux-keystone (Ubuntu Trusty): status |
Fix Committed |
Fix Released |
|
2016-03-15 12:25:43 |
Launchpad Janitor |
linux (Ubuntu Xenial): status |
Fix Committed |
Fix Released |
|
2016-03-15 17:42:23 |
Launchpad Janitor |
linux-lts-xenial (Ubuntu Trusty): status |
New |
Fix Released |
|
2016-03-17 23:25:09 |
Steve Beattie |
linux-raspi2 (Ubuntu Wily): status |
New |
Fix Released |
|
2016-03-17 23:25:13 |
Steve Beattie |
linux-lts-xenial (Ubuntu Trusty): status |
Fix Released |
New |
|
2016-03-17 23:29:28 |
Steve Beattie |
linux-lts-xenial (Ubuntu Trusty): status |
New |
Invalid |
|
2016-03-28 16:45:17 |
Launchpad Janitor |
linux-lts-xenial (Ubuntu Trusty): status |
Invalid |
Fix Released |
|
2016-04-19 10:46:56 |
Steve Beattie |
linux-manta (Ubuntu Xenial): status |
New |
Invalid |
|
2016-04-19 19:42:27 |
Steve Beattie |
linux-raspi2 (Ubuntu Xenial): status |
New |
Invalid |
|
2016-04-27 18:49:41 |
Steve Beattie |
nominated for series |
|
Ubuntu Yakkety |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-ti-omap4 (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-armadaxp (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-quantal (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-raring (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-saucy (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-mako (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-manta (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-keystone (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-goldfish (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-flo (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-trusty (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-utopic (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-vivid (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-wily (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-raspi2 (Ubuntu Yakkety) |
|
2016-04-27 18:49:42 |
Steve Beattie |
bug task added |
|
linux-lts-xenial (Ubuntu Yakkety) |
|
2016-05-06 00:43:46 |
Steve Beattie |
linux-snapdragon (Ubuntu Precise): status |
New |
Invalid |
|
2016-05-06 00:43:49 |
Steve Beattie |
linux-snapdragon (Ubuntu Precise): importance |
Undecided |
High |
|
2016-05-06 00:43:52 |
Steve Beattie |
linux-snapdragon (Ubuntu Wily): status |
New |
Invalid |
|
2016-05-06 00:43:55 |
Steve Beattie |
linux-snapdragon (Ubuntu Wily): importance |
Undecided |
High |
|
2016-05-06 00:43:57 |
Steve Beattie |
linux-snapdragon (Ubuntu Xenial): status |
New |
Invalid |
|
2016-05-06 00:44:02 |
Steve Beattie |
linux-snapdragon (Ubuntu Xenial): importance |
Undecided |
High |
|
2016-05-06 00:44:05 |
Steve Beattie |
linux-snapdragon (Ubuntu Yakkety): status |
New |
Invalid |
|
2016-05-06 00:44:10 |
Steve Beattie |
linux-snapdragon (Ubuntu Yakkety): importance |
Undecided |
High |
|
2016-05-06 00:44:12 |
Steve Beattie |
linux-snapdragon (Ubuntu Trusty): status |
New |
Invalid |
|
2016-05-06 00:44:15 |
Steve Beattie |
linux-snapdragon (Ubuntu Trusty): importance |
Undecided |
High |
|
2016-06-27 14:00:30 |
Kamal Mostafa |
tags |
kernel-cve-skip-description |
kernel-cve-skip-description verification-needed-trusty |
|
2016-06-27 14:00:47 |
Kamal Mostafa |
tags |
kernel-cve-skip-description verification-needed-trusty |
kernel-cve-skip-description verification-needed-trusty verification-needed-vivid |
|
2016-06-27 14:01:01 |
Kamal Mostafa |
tags |
kernel-cve-skip-description verification-needed-trusty verification-needed-vivid |
kernel-cve-skip-description verification-needed-trusty verification-needed-vivid verification-needed-wily |
|
2016-06-27 14:01:32 |
Kamal Mostafa |
tags |
kernel-cve-skip-description verification-needed-trusty verification-needed-vivid verification-needed-wily |
kernel-cve-skip-description verification-needed-trusty verification-needed-vivid verification-needed-wily verification-needed-xenial |
|
2016-06-27 16:56:33 |
Launchpad Janitor |
linux-snapdragon (Ubuntu Yakkety): status |
Invalid |
Fix Released |
|
2016-06-27 16:56:33 |
Launchpad Janitor |
cve linked |
|
2016-4482 |
|
2016-06-27 16:56:33 |
Launchpad Janitor |
cve linked |
|
2016-4569 |
|
2016-06-27 16:56:33 |
Launchpad Janitor |
cve linked |
|
2016-4578 |
|
2016-06-27 16:56:33 |
Launchpad Janitor |
cve linked |
|
2016-4951 |
|
2016-06-27 18:28:40 |
Launchpad Janitor |
linux-raspi2 (Ubuntu Xenial): status |
Invalid |
Fix Released |
|
2016-06-27 18:29:34 |
Launchpad Janitor |
linux-snapdragon (Ubuntu Xenial): status |
Invalid |
Fix Released |
|
2016-06-27 18:29:33 |
Launchpad Janitor |
linux-raspi2 (Ubuntu Xenial): status |
Invalid |
Fix Released |
|
2016-06-27 18:29:49 |
Launchpad Janitor |
linux-snapdragon (Ubuntu Xenial): status |
Invalid |
Fix Released |
|
2016-06-27 21:43:16 |
Launchpad Janitor |
linux-raspi2 (Ubuntu Yakkety): status |
Invalid |
Fix Released |
|
2016-07-28 15:33:40 |
Seth Forshee |
tags |
kernel-cve-skip-description verification-needed-trusty verification-needed-vivid verification-needed-wily verification-needed-xenial |
kernel-cve-skip-description verification-needed-precise verification-needed-trusty verification-needed-vivid verification-needed-wily verification-needed-xenial |
|
2016-08-04 16:59:41 |
Seth Forshee |
tags |
kernel-cve-skip-description verification-needed-precise verification-needed-trusty verification-needed-vivid verification-needed-wily verification-needed-xenial |
kernel-cve-skip-description verification-done-xenial verification-needed-precise verification-needed-trusty verification-needed-vivid verification-needed-wily |
|
2016-08-04 17:00:12 |
Seth Forshee |
tags |
kernel-cve-skip-description verification-done-xenial verification-needed-precise verification-needed-trusty verification-needed-vivid verification-needed-wily |
kernel-cve-skip-description verification-done-precise verification-done-trusty verification-done-vivid verification-done-wily verification-done-xenial |
|
2016-08-12 17:18:56 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-security/linux-lts-wily |
|
2016-08-12 17:19:49 |
Launchpad Janitor |
branch linked |
|
lp:ubuntu/trusty-updates/linux-lts-wily |
|
2017-10-17 15:51:56 |
Andy Whitcroft |
linux-flo (Ubuntu Vivid): status |
New |
Won't Fix |
|
2017-10-17 16:20:56 |
Andy Whitcroft |
linux-lts-quantal (Ubuntu Vivid): status |
New |
Won't Fix |
|
2017-10-17 16:34:34 |
Andy Whitcroft |
linux-lts-saucy (Ubuntu Vivid): status |
New |
Won't Fix |
|
2017-10-17 16:42:32 |
Andy Whitcroft |
linux-lts-trusty (Ubuntu Vivid): status |
New |
Won't Fix |
|
2017-10-17 16:58:10 |
Andy Whitcroft |
linux-lts-vivid (Ubuntu Vivid): status |
New |
Won't Fix |
|
2017-10-17 17:34:28 |
Andy Whitcroft |
linux-mako (Ubuntu Vivid): status |
New |
Won't Fix |
|
2017-10-17 18:03:31 |
Andy Whitcroft |
linux-raspi2 (Ubuntu Vivid): status |
New |
Won't Fix |
|
2020-07-14 18:10:30 |
Steve Beattie |
linux-goldfish (Ubuntu Xenial): status |
New |
Won't Fix |
|
2020-07-14 19:53:53 |
Steve Beattie |
linux-flo (Ubuntu Xenial): status |
New |
Won't Fix |
|
2020-07-14 19:54:28 |
Steve Beattie |
linux-mako (Ubuntu Xenial): status |
New |
Won't Fix |
|
2020-07-14 19:59:13 |
Steve Beattie |
linux-flo (Ubuntu): status |
New |
Won't Fix |
|
2020-07-14 19:59:44 |
Steve Beattie |
linux-goldfish (Ubuntu): status |
New |
Won't Fix |
|
2020-07-14 20:00:21 |
Steve Beattie |
linux-mako (Ubuntu): status |
New |
Won't Fix |
|