The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
|
KickThemOut - Kick Devices Off Your Network
filter_list
|
|
|
Nine Years of Service
Posts: 363
Threads: 255
KickThemOut - Kick Devices Off Your Network 08-31-2017, 04:54 PM
#1
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
(This post was last modified: 08-31-2017, 04:55 PM by ZanGetsu.)
•
Nine Years of Service
Posts: 21
Threads: 1
RE: KickThemOut - Kick Devices Off Your Network 09-10-2017, 02:46 AM
#2
Thanks for this share m8
•
Thirteen Years of Service
Posts: 2,420
Threads: 231
RE: KickThemOut - Kick Devices Off Your Network 09-10-2017, 04:51 AM
#3
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.
•
Ten Years of Service
Posts: 4,466
Threads: 227
RE: KickThemOut - Kick Devices Off Your Network 09-21-2017, 04:27 AM
#4
(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
(This post was last modified: 09-21-2017, 04:28 AM by pvnk.)
•
Fourteen Years of Service
Posts: 2,740
Threads: 293
RE: KickThemOut - Kick Devices Off Your Network 09-21-2017, 04:46 AM
#5
I assume this automates deauth attacks?
•
Ten Years of Service
Posts: 4,466
Threads: 227
RE: KickThemOut - Kick Devices Off Your Network 09-21-2017, 05:58 AM
#6
(09-21-2017, 04:46 AM)Skullmeat Wrote: I assume this automates deauth attacks?
...
what kind of question is that?
•
Fourteen Years of Service
Posts: 2,740
Threads: 293
RE: KickThemOut - Kick Devices Off Your Network 09-21-2017, 07:44 AM
#7
(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.
•
Nine Years of Service
Posts: 1,166
Threads: 82
RE: KickThemOut - Kick Devices Off Your Network 09-21-2017, 11:02 AM
#8
(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. "
(This post was last modified: 09-21-2017, 11:03 AM by Synthx.)
•
Ten Years of Service
Posts: 4,466
Threads: 227
RE: KickThemOut - Kick Devices Off Your Network 09-22-2017, 06:56 AM
#9
(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.
•
Thirteen Years of Service
Posts: 2,420
Threads: 231
RE: KickThemOut - Kick Devices Off Your Network 09-24-2017, 01:47 AM
#10
(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.
•