Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
autodeauth — 로컬 Wi-Fi 네트워크 정보를 수집하고 비인증 공격을 수행하는 자동화된 Linux 서비스 | Kitploit
도구/GitHubGitHub/drew-alleman/autodeauth
Wi-Fi AuditingNetwork MappingInformation GatheringWireless Security
GitHubdrew-alleman/autodeauth

autodeauth

로컬 Wi-Fi 네트워크 정보를 수집하고 비인증 공격을 수행하는 자동화된 Linux 서비스

저장소 보기
6943년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

autodeauth

로컬 네트워크를 자동으로 deauth하는 도구/서비스입니다

  • Raspberry Pi OS 및 Kali Linux에서 테스트됨

설정

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

옵션

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)
                                                    

사용법

설치를 실행한 후에는 어느 디렉토리에서든 autodeauth 명령어로 스크립트를 실행할 수 있습니다

명령줄

공백이 포함된 네트워크는 mac 주소를 사용하여 나타낼 수 있습니다

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

서비스

root@kitploit:~
$ sudo systemctl start autodeauth

전리품 및 로그 파일

전리품

네트워크가 감지되고 화이트리스트/블랙리스트 기준에 부합하면 해당 네트워크 정보가 /var/log/autodeauth/ 디렉토리에 JSON 파일로 저장됩니다

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
} 

로그 파일

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

서비스 구성 편집

autodeauth 서비스의 설정을 변경하려면 /etc/systemd/system/autodeauth.service 파일을 편집하세요
다음 구성을 서비스로 설정하려는 경우를 가정해 봅시다

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

그런 다음 ExecStart 줄을 다음과 같이 변경하면 됩니다

root@kitploit:~
ExecStart=/usr/bin/python3 /usr/local/bin/autodeauth -i wlan0 --blacklist FreeWiFi,myWifi -c 10000
도구 다운로드