Fix for CVE-2026-31431 https://copy.fail/
This commit is contained in:
parent
5740d23cd3
commit
1859d8424e
1 changed files with 13 additions and 0 deletions
|
|
@ -33,5 +33,18 @@
|
||||||
purge: true
|
purge: true
|
||||||
autoremove: true
|
autoremove: true
|
||||||
|
|
||||||
|
# CVE-2026-31431 https://copy.fail/#mitigation
|
||||||
|
- name: Create modprobe config to disable algif_aead
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /etc/modprobe.d/disable-algif.conf
|
||||||
|
line: "install algif_aead /bin/false"
|
||||||
|
create: true
|
||||||
|
mode: '0644'
|
||||||
|
|
||||||
|
- name: Remove algif_aead module if loaded
|
||||||
|
community.general.modprobe:
|
||||||
|
name: algif_aead
|
||||||
|
state: absent
|
||||||
|
|
||||||
- name: Set VM permissions
|
- name: Set VM permissions
|
||||||
ansible.builtin.command: chmod -R o+r /lmn/vm
|
ansible.builtin.command: chmod -R o+r /lmn/vm
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue