How to Make a WifiJammer !

Step 1: Required Hardware and Software
2. USB cable
3. Arduino Ide
Step 2: Setting Up
- Download and install arduino ide from arduino website Link:https://www.arduino.cc/en/main/software
- After installation open arduino and Go to File > Preferences
- In additional Board manager tab copy this address and then click okhttp://arduino.esp8266.com/stable/package_esp8266…
- Now go to Tools > Board > Boards manager
- Wait for the processing. Then type ESP8266 in search bar, select version and install version 2.0. Install only 2.0 because on other versions it won’t work
- Now again go to File > Preferences. Open the folder path under More preferences can be edited directly in the file.Refer the image
- Then click on Packages > esp8266 > hardware > esp8266 > 2.0.0 > tools > sdk > include
- Open user_interface.h with a text editor. Scroll down and before #endif add following lines and save it:
typedef void (*freedom_outside_cb_t)(uint8 status); int wifi_register_send_pkt_freedom_cb(freedom_outside_cb_t cb); void wifi_unregister_send_pkt_freedom_cb(void); int wifi_send_pkt_freedom(uint8 *buf, int len, bool sys_seq);
- Download wifi-jammer-master folder. Extract it and then go to Wifi-Jammer-master > WIFI Jammer > wifi jammer > esp8266_deauther-master > esp8266_deauther > esp8266_deauther.ino
- Now Select your ESP8266 board at Tools > Board and select the port at which Node-Mcu connected at Tools > Port.
- Change ssid and password in the code. Give any name and password.
- Now click upload. wait for the uploading to complete
Download
Step 3: Final Check Up
- Power up the Node-Mcu with laptop power or power bank or any other charger cable
- Now search wifi network on your pc or mobile. You must see your wifi name which you given in the code. Connect it by giving password as given in the code. in my case it’s wohoo and password is 12345678
- Once connected, you can open up your browser and go to 192.168.4.1
- Now scan for networks. Click on your home network. In my case it’s TPKL. Don’t attack on other networks and try it in your home only.
- Go to attacks and click on deauth all. It will stop all clients connected to that network
- Try other attacks also
- deauth selected:sends deauthentication frames and dissociation frames to the selected client(s) in the selected WiFi network.
beacon spam:sends beacon frames with the same SSID as the selected WiFi access point.
random beacon spam:sends beacon frames with a random SSID .
Comments
Post a Comment