Update mitigation guidance and tools for CVE-2026-31431#73
Merged
SergeyKanzhelev merged 9 commits intoGoogleCloudPlatform:masterfrom May 1, 2026
Merged
Conversation
hoskeri
reviewed
Apr 30, 2026
rkolchmeyer
reviewed
Apr 30, 2026
|
You should also add in the initcall_blacklist=algif_aead_init advice here, not just the daemonset. |
rkolchmeyer
reviewed
Apr 30, 2026
Collaborator
Author
|
Approver please squash-merge. |
SergeyKanzhelev
approved these changes
May 1, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces immediate mitigation strategies and deployment instructions for CVE-2026-31431 (Copy Fail), a Linux kernel vulnerability that allows for container escapes and local privilege escalation via the
AF_ALGsocket family.It updates two directories with respective mitigation methods:
spo-seccomp-mitigation/: Contains a custom Seccomp profile and binding to be deployed via the Security Profiles Operator (SPO). This profile blocksAF_ALGsocket creation at the workload level and is the recommended mitigation for GKE Autopilot clusters or environments where privileged DaemonSets are prohibited.disable-algif-aead/: Contains a privileged DaemonSet that edits the node's/etc/modprobe.dconfiguration to blacklist the vulnerablealgif_aeadmodule. The README includes important caveats regarding Secure Boot and Spot (Preemptible VM) nodes.These mitigations are intended to protect clusters while upstream kernel patches are being absorbed and rolled out.