Activity log for bug #806390

Date Who What changed Old value New value Message
2011-07-06 09:50:09 Andy Whitcroft bug added bug
2011-07-06 09:50:12 Andy Whitcroft tags kernel-cve-tracking-bug
2011-07-06 09:50:14 Andy Whitcroft security vulnerability no yes
2011-07-06 09:50:15 Andy Whitcroft cve linked 2011-2484
2011-07-06 09:50:25 Andy Whitcroft nominated for series Ubuntu Oneiric
2011-07-06 09:50:27 Andy Whitcroft bug task added linux (Ubuntu Oneiric)
2011-07-06 09:50:27 Andy Whitcroft bug task added linux-fsl-imx51 (Ubuntu Oneiric)
2011-07-06 09:50:27 Andy Whitcroft bug task added linux-lts-backport-maverick (Ubuntu Oneiric)
2011-07-06 09:50:27 Andy Whitcroft bug task added linux-mvl-dove (Ubuntu Oneiric)
2011-07-06 09:50:27 Andy Whitcroft bug task added linux-ti-omap4 (Ubuntu Oneiric)
2011-07-06 09:50:32 Andy Whitcroft nominated for series Ubuntu Natty
2011-07-06 09:50:34 Andy Whitcroft bug task added linux (Ubuntu Natty)
2011-07-06 09:50:34 Andy Whitcroft bug task added linux-fsl-imx51 (Ubuntu Natty)
2011-07-06 09:50:34 Andy Whitcroft bug task added linux-lts-backport-maverick (Ubuntu Natty)
2011-07-06 09:50:34 Andy Whitcroft bug task added linux-mvl-dove (Ubuntu Natty)
2011-07-06 09:50:34 Andy Whitcroft bug task added linux-ti-omap4 (Ubuntu Natty)
2011-07-06 09:50:39 Andy Whitcroft nominated for series Ubuntu Maverick
2011-07-06 09:50:41 Andy Whitcroft bug task added linux (Ubuntu Maverick)
2011-07-06 09:50:41 Andy Whitcroft bug task added linux-fsl-imx51 (Ubuntu Maverick)
2011-07-06 09:50:41 Andy Whitcroft bug task added linux-lts-backport-maverick (Ubuntu Maverick)
2011-07-06 09:50:41 Andy Whitcroft bug task added linux-mvl-dove (Ubuntu Maverick)
2011-07-06 09:50:41 Andy Whitcroft bug task added linux-ti-omap4 (Ubuntu Maverick)
2011-07-06 09:50:46 Andy Whitcroft nominated for series Ubuntu Lucid
2011-07-06 09:50:48 Andy Whitcroft bug task added linux (Ubuntu Lucid)
2011-07-06 09:50:48 Andy Whitcroft bug task added linux-fsl-imx51 (Ubuntu Lucid)
2011-07-06 09:50:48 Andy Whitcroft bug task added linux-lts-backport-maverick (Ubuntu Lucid)
2011-07-06 09:50:48 Andy Whitcroft bug task added linux-mvl-dove (Ubuntu Lucid)
2011-07-06 09:50:48 Andy Whitcroft bug task added linux-ti-omap4 (Ubuntu Lucid)
2011-07-06 09:50:55 Andy Whitcroft nominated for series Ubuntu Hardy
2011-07-06 09:50:56 Andy Whitcroft bug task added linux (Ubuntu Hardy)
2011-07-06 09:50:56 Andy Whitcroft bug task added linux-fsl-imx51 (Ubuntu Hardy)
2011-07-06 09:50:56 Andy Whitcroft bug task added linux-lts-backport-maverick (Ubuntu Hardy)
2011-07-06 09:50:56 Andy Whitcroft bug task added linux-mvl-dove (Ubuntu Hardy)
2011-07-06 09:50:56 Andy Whitcroft bug task added linux-ti-omap4 (Ubuntu Hardy)
2011-07-06 09:52:13 Andy Whitcroft linux-ti-omap4 (Ubuntu Lucid): status New Invalid
2011-07-06 09:52:16 Andy Whitcroft linux-fsl-imx51 (Ubuntu Maverick): status New Invalid
2011-07-06 09:52:18 Andy Whitcroft linux-lts-backport-maverick (Ubuntu Maverick): status New Invalid
2011-07-06 09:52:22 Andy Whitcroft linux-fsl-imx51 (Ubuntu Natty): status New Invalid
2011-07-06 09:52:25 Andy Whitcroft linux-lts-backport-maverick (Ubuntu Natty): status New Invalid
2011-07-06 09:52:28 Andy Whitcroft linux-mvl-dove (Ubuntu Natty): status New Invalid
2011-07-06 09:52:30 Andy Whitcroft linux-fsl-imx51 (Ubuntu Oneiric): status New Invalid
2011-07-06 09:52:33 Andy Whitcroft linux-lts-backport-maverick (Ubuntu Oneiric): status New Invalid
2011-07-06 09:52:36 Andy Whitcroft linux-mvl-dove (Ubuntu Oneiric): status New Invalid
2011-07-06 09:52:40 Andy Whitcroft linux-fsl-imx51 (Ubuntu Hardy): status New Invalid
2011-07-06 09:52:43 Andy Whitcroft linux-lts-backport-maverick (Ubuntu Hardy): status New Invalid
2011-07-06 09:52:45 Andy Whitcroft linux-mvl-dove (Ubuntu Hardy): status New Invalid
2011-07-06 09:52:48 Andy Whitcroft linux-ti-omap4 (Ubuntu Hardy): status New Invalid
2011-07-07 10:28:35 Andy Whitcroft linux (Ubuntu Oneiric): status New Invalid
2011-07-07 10:30:48 Andy Whitcroft description Placeholder The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Fixed-by: 26c4caea9d697043cc5a458b96411b86d7f6babd commit 26c4caea9d697043cc5a458b96411b86d7f6babd Author: Vasiliy Kulikov <segoon@openwall.com> Date: Mon Jun 27 16:18:11 2011 -0700 taskstats: don't allow duplicate entries in listener mode Currently a single process may register exit handlers unlimited times. It may lead to a bloated listeners chain and very slow process terminations. Eg after 10KK sent TASKSTATS_CMD_ATTR_REGISTER_CPUMASKs ~300 Mb of kernel memory is stolen for the handlers chain and "time id" shows 2-7 seconds instead of normal 0.003. It makes it possible to exhaust all kernel memory and to eat much of CPU time by triggerring numerous exits on a single CPU. The patch limits the number of times a single process may register itself on a single CPU to one. One little issue is kept unfixed - as taskstats_exit() is called before exit_files() in do_exit(), the orphaned listener entry (if it was not explicitly deregistered) is kept until the next someone's exit() and implicit deregistration in send_cpu_listeners(). So, if a process registered itself as a listener exits and the next spawned process gets the same pid, it would inherit taskstats attributes. Signed-off-by: Vasiliy Kulikov <segooon@gmail.com> Cc: Balbir Singh <bsingharora@gmail.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-07-07 10:33:39 Andy Whitcroft linux (Ubuntu Natty): status New In Progress
2011-07-07 10:33:39 Andy Whitcroft linux (Ubuntu Natty): assignee Andy Whitcroft (apw)
2011-07-07 10:35:29 Andy Whitcroft linux (Ubuntu Maverick): status New In Progress
2011-07-07 10:35:29 Andy Whitcroft linux (Ubuntu Maverick): assignee Andy Whitcroft (apw)
2011-07-07 10:38:54 Andy Whitcroft linux (Ubuntu Lucid): status New In Progress
2011-07-07 10:38:54 Andy Whitcroft linux (Ubuntu Lucid): assignee Andy Whitcroft (apw)
2011-07-07 10:42:30 Andy Whitcroft linux (Ubuntu Hardy): status New In Progress
2011-07-07 10:42:30 Andy Whitcroft linux (Ubuntu Hardy): assignee Andy Whitcroft (apw)
2011-07-07 10:42:55 Andy Whitcroft linux-lts-backport-maverick (Ubuntu Lucid): status New In Progress
2011-07-07 10:43:08 Andy Whitcroft bug task added linux-lts-backport-natty (Ubuntu)
2011-07-07 10:43:43 Andy Whitcroft linux-lts-backport-natty (Ubuntu Lucid): status New In Progress
2011-07-07 10:44:10 Andy Whitcroft linux-lts-backport-natty (Ubuntu Maverick): status New Invalid
2011-07-07 10:44:12 Andy Whitcroft linux-lts-backport-natty (Ubuntu Natty): status New Invalid
2011-07-07 10:44:14 Andy Whitcroft linux-lts-backport-natty (Ubuntu Oneiric): status New Invalid
2011-07-07 10:44:17 Andy Whitcroft linux-lts-backport-natty (Ubuntu Hardy): status New Invalid
2011-07-07 10:44:58 Andy Whitcroft bug task added linux-ec2 (Ubuntu)
2011-07-07 10:46:33 Andy Whitcroft linux-ec2 (Ubuntu Maverick): status New Invalid
2011-07-07 10:46:36 Andy Whitcroft linux-ec2 (Ubuntu Natty): status New Invalid
2011-07-07 10:46:39 Andy Whitcroft linux-ec2 (Ubuntu Oneiric): status New Invalid
2011-07-07 10:46:42 Andy Whitcroft linux-ec2 (Ubuntu Hardy): status New Invalid
2011-07-07 10:48:38 Andy Whitcroft linux-fsl-imx51 (Ubuntu Lucid): status New In Progress
2011-07-07 10:48:38 Andy Whitcroft linux-fsl-imx51 (Ubuntu Lucid): assignee Andy Whitcroft (apw)
2011-07-07 10:50:25 Andy Whitcroft linux-mvl-dove (Ubuntu Lucid): status New In Progress
2011-07-07 10:50:44 Andy Whitcroft linux-mvl-dove (Ubuntu Maverick): status New In Progress
2011-07-07 11:14:06 Andy Whitcroft linux-ti-omap4 (Ubuntu Maverick): status New In Progress
2011-07-07 11:14:06 Andy Whitcroft linux-ti-omap4 (Ubuntu Maverick): assignee Andy Whitcroft (apw)
2011-07-07 11:14:31 Andy Whitcroft linux-ti-omap4 (Ubuntu Natty): status New In Progress
2011-07-07 11:14:31 Andy Whitcroft linux-ti-omap4 (Ubuntu Natty): assignee Andy Whitcroft (apw)
2011-07-07 11:15:23 Andy Whitcroft linux-ti-omap4 (Ubuntu Oneiric): status New In Progress
2011-07-07 13:08:52 Tim Gardner linux (Ubuntu Hardy): status In Progress Fix Committed
2011-07-07 13:09:08 Tim Gardner linux (Ubuntu Lucid): status In Progress Fix Committed
2011-07-07 13:09:20 Tim Gardner linux (Ubuntu Maverick): status In Progress Fix Committed
2011-07-07 13:09:34 Tim Gardner linux (Ubuntu Natty): status In Progress Fix Committed
2011-07-07 13:09:50 Tim Gardner linux-fsl-imx51 (Ubuntu Lucid): status In Progress Fix Committed
2011-07-07 13:10:12 Tim Gardner linux-ti-omap4 (Ubuntu Maverick): status In Progress Fix Committed
2011-07-07 13:10:27 Tim Gardner linux-ti-omap4 (Ubuntu Natty): status In Progress Fix Committed
2011-07-07 13:11:39 Andy Whitcroft linux-ec2 (Ubuntu Lucid): status New Fix Committed
2011-08-02 03:17:35 Kees Cook linux-lts-backport-natty (Ubuntu Lucid): status In Progress Fix Committed
2011-08-02 03:17:37 Kees Cook linux-mvl-dove (Ubuntu Lucid): status In Progress Fix Committed
2011-08-02 03:17:40 Kees Cook linux-mvl-dove (Ubuntu Maverick): status In Progress Fix Committed
2011-08-02 03:17:42 Kees Cook linux-lts-backport-maverick (Ubuntu Lucid): status In Progress Fix Committed
2011-08-02 03:17:45 Kees Cook linux-ti-omap4 (Ubuntu Oneiric): status In Progress Fix Committed
2011-08-02 03:17:47 Kees Cook description The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Fixed-by: 26c4caea9d697043cc5a458b96411b86d7f6babd commit 26c4caea9d697043cc5a458b96411b86d7f6babd Author: Vasiliy Kulikov <segoon@openwall.com> Date: Mon Jun 27 16:18:11 2011 -0700 taskstats: don't allow duplicate entries in listener mode Currently a single process may register exit handlers unlimited times. It may lead to a bloated listeners chain and very slow process terminations. Eg after 10KK sent TASKSTATS_CMD_ATTR_REGISTER_CPUMASKs ~300 Mb of kernel memory is stolen for the handlers chain and "time id" shows 2-7 seconds instead of normal 0.003. It makes it possible to exhaust all kernel memory and to eat much of CPU time by triggerring numerous exits on a single CPU. The patch limits the number of times a single process may register itself on a single CPU to one. One little issue is kept unfixed - as taskstats_exit() is called before exit_files() in do_exit(), the orphaned listener entry (if it was not explicitly deregistered) is kept until the next someone's exit() and implicit deregistration in send_cpu_listeners(). So, if a process registered itself as a listener exits and the next spawned process gets the same pid, it would inherit taskstats attributes. Signed-off-by: Vasiliy Kulikov <segooon@gmail.com> Cc: Balbir Singh <bsingharora@gmail.com> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Fixed-by: 26c4caea9d697043cc5a458b96411b86d7f6babd
2011-08-02 20:17:57 Kees Cook description The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Fixed-by: 26c4caea9d697043cc5a458b96411b86d7f6babd The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Introduced-by: f9fd8914c1acca0d98b69d831b128d5b52f03c51 Fixed-by: 26c4caea9d697043cc5a458b96411b86d7f6babd
2011-08-08 21:36:14 Launchpad Janitor linux (Ubuntu Hardy): status Fix Committed Fix Released
2011-08-08 21:36:14 Launchpad Janitor cve linked 2010-4073
2011-08-08 21:36:14 Launchpad Janitor cve linked 2010-4165
2011-08-08 21:36:14 Launchpad Janitor cve linked 2010-4238
2011-08-08 21:36:14 Launchpad Janitor cve linked 2010-4249
2011-08-08 21:36:14 Launchpad Janitor cve linked 2010-4649
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-0711
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-1010
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-1090
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-1170
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-1171
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-1172
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-1173
2011-08-08 21:36:14 Launchpad Janitor cve linked 2011-2534
2011-08-10 22:16:33 Kees Cook description The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Introduced-by: f9fd8914c1acca0d98b69d831b128d5b52f03c51 Fixed-by: 26c4caea9d697043cc5a458b96411b86d7f6babd The add_del_listener function in kernel/taskstats.c in the Linux kernel 2.6.39.1 and earlier does not prevent multiple registrations of exit handlers, which allows local users to cause a denial of service (memory and CPU consumption), and bypass the OOM Killer, via a crafted application. Break-Fix: f9fd8914c1acca0d98b69d831b128d5b52f03c51 26c4caea9d697043cc5a458b96411b86d7f6babd
2011-08-15 08:20:14 Launchpad Janitor branch linked lp:ubuntu/lucid-proposed/linux-lts-backport-maverick
2011-08-16 21:08:23 Kees Cook linux-ec2 (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:08:25 Kees Cook linux-ec2 (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:08:28 Kees Cook linux-ec2 (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:08:30 Kees Cook linux-ec2 (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:08:32 Kees Cook linux-ec2 (Ubuntu Natty): importance Undecided Medium
2011-08-16 21:08:35 Kees Cook linux-lts-backport-natty (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:08:37 Kees Cook linux-lts-backport-natty (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:08:39 Kees Cook linux-lts-backport-natty (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:08:41 Kees Cook linux-lts-backport-natty (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:08:43 Kees Cook linux-lts-backport-natty (Ubuntu Natty): importance Undecided Medium
2011-08-16 21:08:45 Kees Cook linux-mvl-dove (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:08:48 Kees Cook linux-mvl-dove (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:08:51 Kees Cook linux-mvl-dove (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:08:53 Kees Cook linux-mvl-dove (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:08:56 Kees Cook linux-mvl-dove (Ubuntu Natty): importance Undecided Medium
2011-08-16 21:08:58 Kees Cook linux-lts-backport-maverick (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:09:00 Kees Cook linux-lts-backport-maverick (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:09:02 Kees Cook linux-lts-backport-maverick (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:09:04 Kees Cook linux-lts-backport-maverick (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:09:06 Kees Cook linux-lts-backport-maverick (Ubuntu Natty): importance Undecided Medium
2011-08-16 21:09:09 Kees Cook linux (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:09:11 Kees Cook linux (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:09:13 Kees Cook linux (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:09:15 Kees Cook linux (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:09:18 Kees Cook linux (Ubuntu Natty): importance Undecided Medium
2011-08-16 21:09:20 Kees Cook linux-ti-omap4 (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:09:22 Kees Cook linux-ti-omap4 (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:09:24 Kees Cook linux-ti-omap4 (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:09:26 Kees Cook linux-ti-omap4 (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:09:28 Kees Cook linux-ti-omap4 (Ubuntu Natty): importance Undecided Medium
2011-08-16 21:09:31 Kees Cook linux-fsl-imx51 (Ubuntu Lucid): importance Undecided Medium
2011-08-16 21:09:34 Kees Cook linux-fsl-imx51 (Ubuntu Oneiric): importance Undecided Medium
2011-08-16 21:09:36 Kees Cook linux-fsl-imx51 (Ubuntu Hardy): importance Undecided Medium
2011-08-16 21:09:38 Kees Cook linux-fsl-imx51 (Ubuntu Maverick): importance Undecided Medium
2011-08-16 21:09:41 Kees Cook linux-fsl-imx51 (Ubuntu Natty): importance Undecided Medium
2011-08-19 05:48:38 Launchpad Janitor linux (Ubuntu Natty): status Fix Committed Fix Released
2011-08-19 05:48:38 Launchpad Janitor cve linked 2011-1577
2011-08-19 05:48:38 Launchpad Janitor cve linked 2011-1581
2011-08-19 05:48:38 Launchpad Janitor cve linked 2011-2493
2011-08-24 10:23:48 Launchpad Janitor branch linked lp:ubuntu/maverick-proposed/linux-ti-omap4
2011-08-24 10:29:26 Launchpad Janitor branch linked lp:ubuntu/lucid-proposed/linux-ec2
2011-08-24 10:40:29 Launchpad Janitor branch linked lp:ubuntu/lucid-proposed/linux-mvl-dove
2011-08-24 10:41:08 Launchpad Janitor branch linked lp:ubuntu/maverick-proposed/linux-mvl-dove
2011-09-01 11:21:23 Launchpad Janitor branch linked lp:ubuntu/natty-proposed/linux-ti-omap4
2011-09-13 10:13:37 Launchpad Janitor linux-fsl-imx51 (Ubuntu Lucid): status Fix Committed Fix Released
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4076
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4077
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4158
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4162
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4163
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4175
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4242
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4243
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4251
2011-09-13 10:13:37 Launchpad Janitor cve linked 2010-4805
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-0726
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1012
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1013
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1020
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1078
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1079
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1080
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1082
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1093
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1160
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1163
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1180
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1478
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1493
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1598
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1770
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-1833
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-2492
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-2699
2011-09-13 10:13:37 Launchpad Janitor cve linked 2011-2918
2011-09-13 10:35:45 Launchpad Janitor linux-mvl-dove (Ubuntu Lucid): status Fix Committed Fix Released
2011-09-13 10:42:07 Launchpad Janitor linux-ti-omap4 (Ubuntu Maverick): status Fix Committed Fix Released
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-3296
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-3297
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-3858
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-3859
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-3880
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4080
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4081
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4082
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4083
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4157
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4169
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4248
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4256
2011-09-13 10:42:07 Launchpad Janitor cve linked 2010-4565
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-0463
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-0695
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-1016
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-1017
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-1019
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-1169
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-1494
2011-09-13 10:42:07 Launchpad Janitor cve linked 2011-1748
2011-09-13 11:12:42 Launchpad Janitor linux (Ubuntu Maverick): status Fix Committed Fix Released
2011-09-13 13:18:35 Launchpad Janitor linux-lts-backport-maverick (Ubuntu Lucid): status Fix Committed Fix Released
2011-09-19 14:39:43 Marc Deslauriers linux-mvl-dove (Ubuntu Maverick): status Fix Committed Fix Released
2011-09-21 06:25:35 Launchpad Janitor linux-ti-omap4 (Ubuntu Natty): status Fix Committed Fix Released
2011-09-21 06:25:35 Launchpad Janitor cve linked 2011-2689
2011-09-26 10:27:32 Launchpad Janitor linux-ec2 (Ubuntu Lucid): status Fix Committed Fix Released
2011-09-29 08:30:00 Launchpad Janitor linux-lts-backport-natty (Ubuntu Lucid): status Fix Committed Fix Released
2011-09-29 08:34:04 Launchpad Janitor linux (Ubuntu Lucid): status Fix Committed Fix Released
2011-10-14 13:20:45 Marc Deslauriers nominated for series Ubuntu Precise
2011-10-14 13:20:47 Marc Deslauriers bug task added linux (Ubuntu Precise)
2011-10-14 13:20:47 Marc Deslauriers bug task added linux-ec2 (Ubuntu Precise)
2011-10-14 13:20:47 Marc Deslauriers bug task added linux-fsl-imx51 (Ubuntu Precise)
2011-10-14 13:20:47 Marc Deslauriers bug task added linux-lts-backport-maverick (Ubuntu Precise)
2011-10-14 13:20:47 Marc Deslauriers bug task added linux-lts-backport-natty (Ubuntu Precise)
2011-10-14 13:20:47 Marc Deslauriers bug task added linux-mvl-dove (Ubuntu Precise)
2011-10-14 13:20:47 Marc Deslauriers bug task added linux-ti-omap4 (Ubuntu Precise)
2011-10-25 20:16:58 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Oneiric): status New Invalid
2011-10-25 20:17:02 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Oneiric): importance Undecided Medium
2011-10-25 20:17:05 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Lucid): status New Invalid
2011-10-25 20:17:07 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Lucid): importance Undecided Medium
2011-10-25 20:17:10 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Precise): status New Invalid
2011-10-25 20:17:14 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Precise): importance Undecided Medium
2011-10-25 20:17:16 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Hardy): status New Invalid
2011-10-25 20:17:19 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Hardy): importance Undecided Medium
2011-10-25 20:17:21 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Maverick): status New Invalid
2011-10-25 20:17:25 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Maverick): importance Undecided Medium
2011-10-25 20:17:27 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Natty): status New Invalid
2011-10-25 20:17:31 Marc Deslauriers linux-lts-backport-oneiric (Ubuntu Natty): importance Undecided Medium
2011-12-21 14:05:59 Paolo Pisati linux-ti-omap4 (Ubuntu Oneiric): status Fix Committed Fix Released
2011-12-21 14:06:18 Paolo Pisati linux-ti-omap4 (Ubuntu Precise): status Fix Committed Fix Released
2015-02-12 07:12:39 Mathew Hodson cve unlinked 2010-4249