├── README.md └── Installer.py /README.md: -------------------------------------------------------------------------------- 1 | # THBD 2 | ### Wifi_Hack_Installer 3 | ### Note:Your Device Must Be Rooted. 4 | 5 | 🤟 Installation: 6 | 7 | ``` 8 | $ pkg update && pkg upgrade 9 | 10 | $ pkg install git python 11 | 12 | $ git clone https://github.com/Mahfuz-THBD/Wifi_Hack_Installer 13 | 14 | $ cd Wifi_Hack_Installer 15 | 16 | $ python Installer.py 17 | ``` 18 | # Wifi_Hack Repo 19 | 20 | https://github.com/Mahfuz-THBD/Wifi_Hack 21 | -------------------------------------------------------------------------------- /Installer.py: -------------------------------------------------------------------------------- 1 | import os 2 | print('''\033[1;36;40mWifi_Hack Installer By THBD 3 | Your Device Must Be Rooted 4 | If Any Question, 5 | Contact Me On Telegram 6 | Tg_User:@biri_baba \n''') 7 | os.system("pkg install -y root-repo") 8 | os.system("pkg install -y git tsu python wpa-supplicant pixiewps iw") 9 | os.system("cd ..;git clone https://github.com/Mahfuz-THBD/Wifi_Hack") 10 | 11 | os.system("cd ..;chmod +x Wifi_Hack/birihack.py") 12 | 13 | print("\033[1;34;40mThanks.\nInstallation Done.\nNow Go To Home Directory[~] And Enter This Command :\nsudo python Wifi_Hack/birihack.py -i wlan0 -K") 14 | --------------------------------------------------------------------------------