wifi-cracking - Crack WPA/WPA2 Wi-Fi Routers with Airodump-ng and Aircrack-ng/Hashcat 🖧
seen from Malaysia

seen from United States
seen from China
seen from China

seen from Malaysia
seen from Germany
seen from United States
seen from Pakistan
seen from China
seen from Germany
seen from United States

seen from Brazil
seen from Yemen

seen from T1

seen from Brazil

seen from T1

seen from Uruguay

seen from United States
seen from T1
seen from United States
wifi-cracking - Crack WPA/WPA2 Wi-Fi Routers with Airodump-ng and Aircrack-ng/Hashcat 🖧
ESP32 Soft AP: deauth connected stations
ESP32 Soft AP: deauth connected stations
The objective of this tutorial is to show how to deauthenticate all the stations connected to a network hosted by the ESP32, operating as soft AP. The tests from this tutorial were performed using an ESP32 board from DFRobot.
(more…)
View On WordPress
WiFi Hack - Sloggare gli utenti dalla rete wifi con un Jammer da 2 euro!
WiFi Hack – Sloggare gli utenti dalla rete wifi con un Jammer da 2 euro!
Oggi vediamo come effettuare un Wifi DeAuth attack. Un attacco di jamming mirato a kickare gli utenti fuori da una rete wireless e renderla inaccessibile.
Questo attacco può essere a sua volta utile per sferrare attacchi di tipo AP Evil Twin.
Il jammer mostrato è un semplicissimo device che sfrutta il microcontrollore esp8266famosissimo nel mondo IoT e già altre volte trattato su questo sito.…
View On WordPress
Run a deauthentication attack on a wireless network.
Run a deauthentication attack on a wireless network.
Command list for you guys to copy paste. ifconfig wifiname down iwconfig wifiname mode monitor ifconfig wifiname up airmon-ng check wifiname kill processid airodump-ng wifiname airmon-ng start wifiname channelnumber airplay-ng -0 0 -a mac of router Please guys dont abuse this command. Hope you enjoyed the video, you guys/girls are all awwsome. [embedyt]…
View On WordPress
Hocam siz çok yanlış gelmişsiniz bildiğimiz random bu
To my fellow hacker on my apartment building
I recently moved to a new apartment building where they have shared wifi for the entire building. The only problem is that there is a fellow hacker who wants all the bandwidth for himself (or he's trying to collect handshakes to hack the wifi).
He tries to get this by sending 'wifi deauths' that force disconnect me from the network. He does this from spoofed mac addresses, that change every time. But it usually takes him a couple of tries to send a successful deauth. So, every time he tries, I block his fake mac address in my firewall.
#!/usr/bin/env python import subprocess as sub import os import uuid if os.geteuid() != 0: exit("You need to have root privileges to run this script.\nPlease try again, this time using 'sudo'. Exiting.") mymac = ':'.join('%02X' % ((uuid.getnode() >> 8*i) & 0xff) for i in reversed(xrange(6))).lower() whitelist = [mymac, 'd4:ca:6d:5b:5e:7c'] blocked = [] # sudo tcpdump -ni en0 -e ether proto 0x888e p = sub.Popen(['tcpdump', '-l', '-ni', 'en0', '-e', 'ether', 'proto', '0x888e'], stdout=sub.PIPE) try: for row in p.stdout: mac = row.rstrip().split(" ")[1].lower() # process here print row if mac not in whitelist and mac not in blocked: blocked.append(mac) cmd = ['/sbin/ipfw', 'add', 'deny', 'MAC', 'any', mac] sub.call(cmd) except KeyboardInterrupt: p.terminate()
submitted by jwcrux to netsec [link] [15 comments]