Sinisterly
KickThemOut - Kick Devices Off Your Network - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Network Hacking (https://sinister.ly/Forum-Network-Hacking)
+--- Thread: KickThemOut - Kick Devices Off Your Network (/Thread-KickThemOut-Kick-Devices-Off-Your-Network)

Pages: 1 2


KickThemOut - Kick Devices Off Your Network - ZanGetsu - 08-31-2017

[Image: 687474703a2f2f6e696b6f6c61736b616d612e6d...6c2e706e67]

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 2.6 & 2.7.

Install:

Code:
$ sudo apt-get update && sudo apt-get install nmap
$ git clone https://github.com/k4m4/kickthemout.git
$ cd kickthemout/
$ sudo -H pip install --upgrade pip
$ sudo -H python -m pip install -r requirements.txt
$ sudo python kickthemout.py

Video: https://asciinema.org/a/98200?autoplay=1&loop=1

Developers:

Nikolaos Kamarinakis - @nikolaskama
David Schütz - @xdavidhu





RE: KickThemOut - Kick Devices Off Your Network - Paraz0und - 09-10-2017

Thanks for this share m8 Wink


RE: KickThemOut - Kick Devices Off Your Network - phyrrus9 - 09-10-2017

Not to be a buzzkill, but an easier way to kick a device off the network would be to just change the port they're connected on from a thru connection to a VLAN that goes nowhere. Just black hole them to hell.


RE: KickThemOut - Kick Devices Off Your Network - pvnk - 09-21-2017

(09-10-2017, 04:51 AM)phyrrus9 Wrote: Not to be a buzzkill, but an easier way to kick a device off the network would be to just change the port they're connected on from a thru connection to a VLAN that goes nowhere. Just black hole them to hell.

in what world is that easier? running a python script is like clicking a button to launch an executable

it doesn't get easier than that


RE: KickThemOut - Kick Devices Off Your Network - Skullmeat - 09-21-2017

I assume this automates deauth attacks?


RE: KickThemOut - Kick Devices Off Your Network - pvnk - 09-21-2017

(09-21-2017, 04:46 AM)Skullmeat Wrote: I assume this automates deauth attacks?

...

what kind of question is that?


RE: KickThemOut - Kick Devices Off Your Network - Skullmeat - 09-21-2017

(09-21-2017, 05:58 AM)spec Wrote:
(09-21-2017, 04:46 AM)Skullmeat Wrote: I assume this automates deauth attacks?

...

what kind of question is that?
A deauth is used to boot people off wifi. Its usually used in preparation for an evil twin attack.


RE: KickThemOut - Kick Devices Off Your Network - Synthx - 09-21-2017

(09-21-2017, 04:46 AM)Skullmeat Wrote: I assume this automates deauth attacks?

I could be wrong, but I do think it does automate deauth attacks. I can't remember where I seen that, but for some reason every time I see kickthemout it rings a bell.
Im not the best with networking and stuff, but it says this on the github page:
" It allows you to select specific or all devices and ARP spoofs them off your local area network. "


RE: KickThemOut - Kick Devices Off Your Network - pvnk - 09-22-2017

(09-21-2017, 07:44 AM)Skullmeat Wrote:
(09-21-2017, 05:58 AM)spec Wrote:
(09-21-2017, 04:46 AM)Skullmeat Wrote: I assume this automates deauth attacks?

...

what kind of question is that?
A deauth is used to boot people off wifi. Its usually used in preparation for an evil twin attack.
I'm well aware of what a deauth is. I was in shock when you posted your question because I wasn't sure if you were seriously asking. That has been confirmed.


RE: KickThemOut - Kick Devices Off Your Network - phyrrus9 - 09-24-2017

(09-21-2017, 04:27 AM)spec Wrote:
(09-10-2017, 04:51 AM)phyrrus9 Wrote: Not to be a buzzkill, but an easier way to kick a device off the network would be to just change the port they're connected on from a thru connection to a VLAN that goes nowhere. Just black hole them to hell.

in what world is that easier? running a python script is like clicking a button to launch an executable

it doesn't get easier than that

Code:
switch# configure terminal
switch(config)# interface ethernet 1/7
switch(config-if)# switchport access vlan 2
switch(config-if)#

so much easier than running some arbitrary python script on your network.