wifikill
wifikill copied to clipboard
It doesn't kill the connections
I tried your script but it doesn't kill any connections. I have all dependencies installed and also enable ip forwarding.
Any answer...?
am on ubuntu 17.10 it does not kill anything but it slows them a little at first
Why can not I kill
In the While True loops add a time.sleep(1) (after the for loop for the "Kill All" option)
@fsull where exactely? can you add the line that fixes this?
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!'
Maybe it's time to look into "wifi deauth" feature from Bettercap (https://github.com/bettercap/bettercap/wiki/wifi)
added the time sleeps on my fork, not sure the stuff works as i can still perform internet operations from my phone etc