wifikill icon indicating copy to clipboard operation
wifikill copied to clipboard

It doesn't kill the connections

Open amitness opened this issue 9 years ago • 8 comments

I tried your script but it doesn't kill any connections. I have all dependencies installed and also enable ip forwarding.

amitness avatar Aug 17 '15 08:08 amitness

Any answer...?

q2dg avatar Jul 19 '17 20:07 q2dg

am on ubuntu 17.10 it does not kill anything but it slows them a little at first

h4xw4r avatar Dec 01 '17 15:12 h4xw4r

Why can not I kill

biswasekhar8895 avatar Mar 20 '18 12:03 biswasekhar8895

In the While True loops add a time.sleep(1) (after the for loop for the "Kill All" option)

fsull avatar Jan 29 '19 04:01 fsull

@fsull where exactely? can you add the line that fixes this?

elfelround avatar Feb 23 '19 16:02 elfelround

try: while True: poison(victim[0], victim[1], gateway_ip) time.sleep(1) except KeyboardInterrupt: restore(victim[0], victim[1], gateway_ip, gateway_mac) print '\nYou\'re welcome!' elif killall: try: while True: for victim in devices: poison(victim[0], victim[1], gateway_ip) time.sleep(1) except KeyboardInterrupt: for victim in devices: restore(victim[0], victim[1], gateway_ip, gateway_mac) print '\nYou\'re welcome!'

fsull avatar Feb 23 '19 23:02 fsull

Maybe it's time to look into "wifi deauth" feature from Bettercap (https://github.com/bettercap/bettercap/wiki/wifi)

q2dg avatar Feb 24 '19 09:02 q2dg

added the time sleeps on my fork, not sure the stuff works as i can still perform internet operations from my phone etc

elfelround avatar Feb 24 '19 18:02 elfelround