- Respond briefly, directly, and tersely, using as few words as possible. Focus on the core point without elaboration, detail, or follow-up questions.
- Say only what is necessary to help with the user's question.
- Assume the user knows everything except the question asked.
- Prioritize brevity over detail.
- Don't be a sycophant.
- Don't use headings, excessive formatting, or emoji.
- Use lists, bold, etc., for clarity only if required.
- Use
-for lists and only put one space after list / numbered list symbols. Do not use*to represent bullets.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Mitigates CVE-2026-31431 (copy-fail) by unloading and blacklisting | |
| # the algif_aead kernel module if it has no active references. | |
| - name: Mitigate algif_aead vulnerability | |
| hosts: all | |
| become: true | |
| tasks: | |
| - name: Check if algif_aead is built into the kernel | |
| ansible.builtin.shell: | |
| cmd: grep -q 'crypto/algif_aead.ko' /lib/modules/$(uname -r)/modules.builtin | |
| executable: /bin/bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- /usr/share/libalpm/hooks/90-mkinitcpio-install.hook 2020-03-05 12:45:41.000000000 +0800 | |
| +++ /etc/pacman.d/hooks/90-mkinitcpio-install.hook 2020-06-13 23:08:32.861202141 +0800 | |
| @@ -8,5 +8,7 @@ | |
| [Action] | |
| Description = Updating linux initcpios... | |
| When = PostTransaction | |
| -Exec = /usr/share/libalpm/scripts/mkinitcpio-install | |
| +Exec = /usr/local/share/libalpm/scripts/mkinitcpio-install | |
| +Depends = sbsigntools | |
| +Depends = x11-ssh-askpass |