All Projects → k4m4 → Kickthemout

k4m4 / Kickthemout

Licence: mit
💤 Kick devices off your network by performing an ARP Spoof attack.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Kickthemout

Wifi Passview
An open source batch script based WiFi Passview for Windows!
Stars: ✭ 157 (-92.17%)
Mutual labels:  wifi, wireless, hacking
Bettercap
The Swiss Army knife for 802.11, BLE, IPv4 and IPv6 networks reconnaissance and MITM attacks.
Stars: ✭ 10,735 (+435.41%)
Mutual labels:  wifi, hacking, spoofing
Mitmap
📡 A python program to create a fake AP and sniff data.
Stars: ✭ 1,526 (-23.89%)
Mutual labels:  wifi, wireless, hacking
Wifi Pumpkin Deprecated
DEPRECATED, wifipumpkin3 -> https://github.com/P0cL4bs/wifipumpkin3
Stars: ✭ 2,964 (+47.83%)
Mutual labels:  wifi, wireless, hacking
Pi Pwnbox Rogueap
Homemade Pwnbox 🚀 / Rogue AP 📡 based on Raspberry Pi — WiFi Hacking Cheatsheets + MindMap 💡
Stars: ✭ 798 (-60.2%)
Mutual labels:  wifi, hacking
Android
An Open-Source Android application that allows you to send and receive files over available connections, and offers unique features like sharing over HTTP, pausing and resuming transfers
Stars: ✭ 695 (-65.34%)
Mutual labels:  wifi, wireless
Catchme
CatchME - WiFi Fun Box "Having Fun with ESP8266"
Stars: ✭ 28 (-98.6%)
Mutual labels:  wifi, hacking
Ble Security Attack Defence
✨ Purpose only! The dangers of Bluetooth Low Energy(BLE)implementations: Unveiling zero day vulnerabilities and security flaws in modern Bluetooth LE stacks.
Stars: ✭ 88 (-95.61%)
Mutual labels:  wireless, hacking
Wirespy
Framework designed to automate various wireless networks attacks (the project was presented on Pentester Academy TV's toolbox in 2017).
Stars: ✭ 293 (-85.39%)
Mutual labels:  wifi, wireless
Hostapd
Script for compiling, patching and packing hostapd from sources
Stars: ✭ 36 (-98.2%)
Mutual labels:  wifi, wireless
Wifi Cracking
Crack WPA/WPA2 Wi-Fi Routers with Airodump-ng and Aircrack-ng/Hashcat
Stars: ✭ 9,546 (+376.11%)
Mutual labels:  wifi, hacking
Wled Wemos Shield
Wemos D1 Mini (ESP8266) or Wemos ESP32 D1 Mini (ESP32) based shield for WLED firmware
Stars: ✭ 105 (-94.76%)
Mutual labels:  wifi, wireless
Ansible Openwisp2
Ansible role that installs and upgrades OpenWISP.
Stars: ✭ 403 (-79.9%)
Mutual labels:  wifi, wireless
Openwisp Controller
Network and WiFi controller: provisioning, configuration management and updates, (pull via openwisp-config or push via SSH), x509 PKI management and more. Mainly OpenWRT, but designed to work also on other systems.
Stars: ✭ 377 (-81.2%)
Mutual labels:  wifi, wireless
Boopsuite
A Suite of Tools written in Python for wireless auditing and security testing.
Stars: ✭ 807 (-59.75%)
Mutual labels:  wifi, wireless
Airgeddon
This is a multi-use bash script for Linux systems to audit wireless networks.
Stars: ✭ 3,830 (+91.02%)
Mutual labels:  wireless, hacking
Rtl88x2bu wifi linux v5.2.4.4 26334.20180126 coex20171012 5044
rtl88x2bu driver updated for modern kernels.
Stars: ✭ 55 (-97.26%)
Mutual labels:  wifi, wireless
Probesniffer
🔍 A tool for sniffing unencrypted wireless probe requests from devices.
Stars: ✭ 288 (-85.64%)
Mutual labels:  wifi, wireless
Wifipassword Stealer
Get All Registered Wifi Passwords from Target Computer.
Stars: ✭ 97 (-95.16%)
Mutual labels:  wifi, hacking
Ansible Openwisp2 Imagegenerator
Automatically build several openwisp2 firmware images for different organizations while keeping track of their differences
Stars: ✭ 122 (-93.92%)
Mutual labels:  wifi, wireless

KickThemOut Logo

KickThemOut

KickThemOut - Kick Devices Off Your Network

A tool to kick devices out of your network and enjoy all the bandwidth for yourself. It allows you to select specific or all devices and ARP spoofs them off your local area network.

  • Compatible with Python 3+ 🎉.

  • Not compatible with Windows.

Authors: Nikolaos Kamarinakis & David Schütz.

Build Badge License Badge Compatibility GitHub Stars


Read my latest post: KickThemout v2.0! 🎉


Installation

Debian Installation

You can download KickThemOut by cloning the Git Repo and simply installing its requirements:

~ ❯❯❯ sudo apt-get update && sudo apt-get install nmap

~ ❯❯❯ git clone https://github.com/k4m4/kickthemout.git

~ ❯❯❯ cd kickthemout/

~/kickthemout ❯❯❯ sudo -H pip3 install -r requirements.txt

~/kickthemout ❯❯❯ sudo python3 kickthemout.py

MacOS Installation

If you would like to install KickThemOut on a Mac, please run the following:

~ ❯❯❯ brew install libdnet nmap

~ ❯❯❯ git clone https://github.com/k4m4/kickthemout.git

~ ❯❯❯ cd kickthemout/

~/kickthemout ❯❯❯ sudo -H pip3 install -r requirements.txt

~/kickthemout ❯❯❯ sudo python3 kickthemout.py

NOTE: You need to have Homebrew installed before running the Mac OS installation.

Also, keep in mind that you might be asked to run some extra commands after executing the pip requirement installation.

ArchLinux Installation

You can download KickThemOut on an Arch based system by executing the following:

~ ❯❯❯ git clone https://github.com/k4m4/kickthemout.git

~ ❯❯❯ cd kickthemout/

~/kickthemout ❯❯❯ sudo -H pip3 install -r requirements.txt

~/kickthemout ❯❯❯ sudo python3 kickthemout.py

Usage

Usage: sudo python3 kickthemout.py [options]

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -p PACKETS, --packets=PACKETS
                        number of packets broadcasted per minute (default: 6)
  -s, --scan            perform a quick network scan and exit
  -t TARGETS, --target=TARGETS
                        specify target IP address(es) and perform attack

Examples:
  sudo python3 kickthemout.py --target 192.168.1.10 
  sudo python3 kickthemout.py -t 192.168.1.5,192.168.1.10 -p 30
  sudo python3 kickthemout.py (interactive mode)

To view all available options run:

~/kickthemout ❯❯❯ sudo python3 kickthemout.py -h

Demo

Here's a short demo:

Asciinema Demo

(For more demos click here)


Developers


Disclaimer

KickThemOut is provided as is under the MIT Licence (as stated below). It is built for educational purposes only. If you choose to use it otherwise, the developers will not be held responsible. Please, do not use it with evil intent.


License

Copyright (c) 2017-18 by Nikolaos Kamarinakis & David Schütz. Some rights reserved.

KickThemOut is under the terms of the MIT License, following all clarifications stated in the license file.

For more information head over to the official project page. You can also go ahead and email me anytime at nikolaskam{at}gmail{dot}com or David at xdavid{at}protonmail{dot}com.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].