diff -Nru networkd-dispatcher-2.1/debian/changelog networkd-dispatcher-2.1/debian/changelog --- networkd-dispatcher-2.1/debian/changelog 2022-04-27 20:18:26.000000000 +0000 +++ networkd-dispatcher-2.1/debian/changelog 2022-05-04 13:29:43.000000000 +0000 @@ -1,3 +1,11 @@ +networkd-dispatcher (2.1-2ubuntu0.22.04.2) jammy-security; urgency=medium + + * SECURITY REGRESSION: Incomplete security fix (LP: #1971550) + - debian/patches/CVE-2022-29799-regression.patch: Add initialized state + in ADMIN_STATES in networkd-dispatcher. + + -- Rodrigo Figueiredo Zaiden Wed, 04 May 2022 10:29:43 -0300 + networkd-dispatcher (2.1-2ubuntu0.22.04.1) jammy-security; urgency=medium * SECURITY UPDATE: Directory traversal diff -Nru networkd-dispatcher-2.1/debian/patches/CVE-2022-29799-regression.patch networkd-dispatcher-2.1/debian/patches/CVE-2022-29799-regression.patch --- networkd-dispatcher-2.1/debian/patches/CVE-2022-29799-regression.patch 1970-01-01 00:00:00.000000000 +0000 +++ networkd-dispatcher-2.1/debian/patches/CVE-2022-29799-regression.patch 2022-05-04 13:29:27.000000000 +0000 @@ -0,0 +1,25 @@ +From 652b32f17ad37c49ef098f352424f97f9b8aa031 Mon Sep 17 00:00:00 2001 +From: Julian Andres Klode +Date: Wed, 4 May 2022 12:07:50 +0200 +Subject: [PATCH] Add missing administrative state 'initialized' + +The recent CVE update introduced a regression in not supporting +the administrative state 'initialized', add it to the list. + +Regression-Of: 074ff68f08d64a963a13e3cfc4fb3e3fb9006dfe +Bug-Ubuntu: https://bugs.launchpad.net/bugs/1971550 +--- + networkd-dispatcher | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- networkd-dispatcher-2.1.orig/networkd-dispatcher ++++ networkd-dispatcher-2.1/networkd-dispatcher +@@ -57,7 +57,7 @@ SINGLETONS = {'Type', 'ESSID', 'Operatio + + # taken from https://www.freedesktop.org/software/systemd/man/networkctl.html + ADMIN_STATES = ['configured', 'configuring', 'failed', 'pending', 'unmanaged', +- 'linger'] ++ 'linger', 'initialized'] + OPER_STATES = ['carrier', 'degraded', 'degraded-carrier', 'dormant', + 'enslaved', 'missing', 'no-carrier', 'off', 'routable'] + diff -Nru networkd-dispatcher-2.1/debian/patches/series networkd-dispatcher-2.1/debian/patches/series --- networkd-dispatcher-2.1/debian/patches/series 2022-04-27 17:52:45.000000000 +0000 +++ networkd-dispatcher-2.1/debian/patches/series 2022-05-04 13:29:24.000000000 +0000 @@ -5,3 +5,4 @@ CVE-2022-29799.patch CVE-2022-29800-1.patch CVE-2022-29800-2.patch +CVE-2022-29799-regression.patch