Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
autodeauth — Servizio Linux automatizzato che raccoglie informazioni sulle reti Wi-Fi locali ed esegue attacchi di deautenticazione. | Kitploit
Strumenti/GitHubGitHub/drew-alleman/autodeauth
Auditing Wi-FiMappatura della ReteRaccolta InformazioniSicurezza Wireless
GitHubdrew-alleman/autodeauth

autodeauth

Servizio Linux automatizzato che raccoglie informazioni sulle reti Wi-Fi locali ed esegue attacchi di deautenticazione.

Vedi Repository
69453 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

autodeauth

Uno strumento/servizio costruito per disautenticare automaticamente le reti locali

  • Testato su Raspberry Pi OS e Kali Linux

Installazione

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

Opzioni

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)
                                                    

Utilizzo

Dopo aver eseguito l'installazione, puoi eseguire lo script usando autodeauth da qualsiasi directory

Riga di comando

Le reti con spazi possono essere rappresentate usando i loro indirizzi mac

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

Servizio

root@kitploit:~
$ sudo systemctl start autodeauth

File di bottino e log

Bottino

Quando viene rilevata una rete che soddisfa i criteri della whitelist/blacklist, le sue informazioni vengono salvate come file json in /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
} 

File di 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

Modifica configurazione servizio

Per modificare le impostazioni del servizio autodeauth, modifica il file /etc/systemd/system/autodeauth.service
Supponiamo che tu voglia impostare la seguente configurazione come servizio

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

Quindi modificheresti la riga ExecStart in

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