Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

debian логотип

CVE-2026-23409

Источник: debian

Описание

[apparmor: fix differential encoding verification]

Пакеты

ПакетСтатусВерсия исправленияРелизТип
linuxfixed6.19.6-2package
linuxfixed6.12.74-2trixiepackage
linuxfixed6.1.164-1bookwormpackage
linuxfixed5.10.251-1bullseyepackage

Примечания

  • https://git.kernel.org/linus/39440b137546a3aa383cfdabc605fb73811b6093 (7.0-rc4)

  • https://www.qualys.com/2026/03/10/crack-armor.txt

Связанные уязвимости

github
1 день назад

In the Linux kernel, the following vulnerability has been resolved: apparmor: fix differential encoding verification Differential encoding allows loops to be created if it is abused. To prevent this the unpack should verify that a diff-encode chain terminates. Unfortunately the differential encode verification had two bugs. 1. it conflated states that had gone through check and already been marked, with states that were currently being checked and marked. This means that loops in the current chain being verified are treated as a chain that has already been verified. 2. the order bailout on already checked states compared current chain check iterators j,k instead of using the outer loop iterator i. Meaning a step backwards in states in the current chain verification was being mistaken for moving to an already verified state. Move to a double mark scheme where already verified states get a different mark, than the current chain being kept. This enables us to al...