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
autodeauth — Serviço automatizado para Linux que coleta informações sobre redes Wi-Fi locais e realiza ataques de desautenticação. | Kitploit
Ferramentas/GitHubGitHub/drew-alleman/autodeauth
Auditoria de Wi-FiMapeamento de RedeColeta de InformaçõesSegurança Sem Fio
GitHubdrew-alleman/autodeauth

autodeauth

Serviço automatizado para Linux que coleta informações sobre redes Wi-Fi locais e realiza ataques de desautenticação.

Ver Repositório
6945há 3 anosRevisado pelo Kitploit

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

autodeauth

Uma ferramenta/serviço criado para desautenticar automaticamente redes locais

  • Testado no Raspberry Pi OS e Kali Linux

Configuração

root@kitploit:~
$ chmod +x setup.sh
$ sudo ./setup.sh

[*] This can be changed by editing /etc/systemd/system/autodeauth.service
[?] Enter your WiFi interface to use with the autodeauth service: wlan0 
[*] Installed!, you can use sudo autodeauth -h to see available options.
[*] Check the README for more infomation about configuring/starting the service

Opções

root@kitploit:~
$ sudo autodeauth -h
        _       _       ___                _   _    
       /_\ _  _| |_ ___|   \ ___ __ _ _  _| |_| |_  
      / _ \ || |  _/ _ \ |) / -_) _` | || |  _| ' \ 
     /_/ \_\_,_|\__\___/___/\___\__,_|\_,_|\__|_||_|

usage: autodeauth [-h] --interface INTERFACE [--blacklist BLACKLIST] [--whitelist WHITELIST] [--led LED] [--time TIME] [--random] [--ignore] [--count COUNT] [--verbose VERBOSE]

Auto Deauth Tool

options:
  -h, --help            show this help message and exit
  --interface INTERFACE, -i INTERFACE
                        Interface to fetch WiFi networks and send deauth packets (must support packet injection)
  --blacklist BLACKLIST, -b BLACKLIST
                        List of networks ssids/mac addresses to avoid (Comma seperated)
  --whitelist WHITELIST, -w WHITELIST
                        List of networks ssids/mac addresses to target (Comma seperated)
  --led LED, -l LED     Led pin number for led display
  --time TIME, -t TIME  Time (in s) between two deauth packets (default 0)
  --random, -r          Randomize your MAC address before deauthing each network
  --ignore              Ignore errors encountered when randomizing your MAC address
  --count COUNT, -c COUNT
                        Number of packets to send (default 5000)
  --verbose VERBOSE, -v VERBOSE
                        Scapy verbosity setting (default: 0)
                                                    

Uso

Após executar a configuração, você pode executar o script usando autodeauth de qualquer diretório

Linha de comando

Redes com espaços podem ser representadas usando seus endereços MAC

root@kitploit:~
$ sudo autodeauth -i wlan0 --blacklist FreeWiFi,E1:DB:12:2F:C1:57 -c 10000

Serviço

root@kitploit:~
$ sudo systemctl start autodeauth

Arquivos de saque e log

Saque

Quando uma rede é detectada e se enquadra nos critérios de whitelist/blacklist, suas informações de rede são salvas como um arquivo json em /var/log/autodeauth/

root@kitploit:~
{
    "ssid": "MyWiFiNetwork",
    "mac_address": "10:0B:21:2E:C1:11",
    "channel": 1,
    "network.frequency": "2.412 GHz",
    "mode": "Master",
    "bitrates": [
        "6 Mb/s",
        "9 Mb/s",
        "12 Mb/s",
        "18 Mb/s",
        "24 Mb/s",
        "36 Mb/s",
        "48 Mb/s",
        "54 Mb/s"
    ],
    "encryption_type": "wpa2",
    "encrypted": true,
    "quality": "70/70",
    "signal": -35
} 

Arquivo de log

root@kitploit:~
$ cat /var/log/autodeauth/log               
2022-08-20 21:01:31 - Scanning for local networks
2022-08-20 21:20:29 - Sending 5000 deauth frames to network: A0:63:91:D5:B8:76 -- MyWiFiNetwork
2022-08-20 21:21:00 - Exiting/Cleaning up

Editar configuração do serviço

Para alterar as configurações do serviço autodeauth, edite o arquivo /etc/systemd/system/autodeauth.service
Digamos que você queira configurar a seguinte opção como um serviço

root@kitploit:~
$ sudo autodeauth -i wlan0 --blacklist FreeWiFi,myWifi -c 10000
root@kitploit:~
$ vim /etc/systemd/system/autodeauth.service

Então você alteraria a linha ExecStart para

root@kitploit:~
ExecStart=/usr/bin/python3 /usr/local/bin/autodeauth -i wlan0 --blacklist FreeWiFi,myWifi -c 10000
Baixar ferramenta