wificurse

wifi jamming tool
git clone git://git.2f30.org/wificurse
Log | Files | Refs | README | LICENSE

README (1007B)


      1 This program listens for beacons sent from wireless access points
      2 in the range of your wireless station. Once received the program
      3 extracts the BSSID of the AP and transmits deauthentication packets
      4 using the broadcast MAC address. This results to the disconnection
      5 of all clients connected to the AP at the time of the attack. This
      6 is essencially a WiFi DoS attack tool created for educational
      7 purposes only. It works only in Linux and requires wireless card
      8 drivers capable of injecting packets in wireless networks.
      9 
     10 How to use it: Just run it as root and put as first argument the
     11 card interface. It will automatically put your interface in monitor
     12 mode and it will listen at channel range 1-14. If there is no AP in the
     13 channel, it will change channel every 1 second, or else it will start
     14 the attack which it takes approximately 30 seconds. After that it will
     15 change channel.
     16 
     17 
     18 compile:
     19     make
     20 
     21 install:
     22     make PREFIX=/usr install
     23 
     24 ARM cross-compile:
     25     make CROSS_COMPILE=arm-none-linux-gnueabi-