This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# transmit burst of 5 forged beacon packets for each entry in our whitelist to force client device to connect | |
./forge-beacons -i wlan1 \ | |
--bssid de:ad:be:ef:13:37 \ | |
--known-essids-file ssid-whitelist.txt \ | |
--dst-addr 11:22:33:11:22:33 \ | |
--burst-count 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Name: build-wireshark-dev.py | |
# Author: @s0lst1c3 | |
# Email: [email protected] | |
# Description: Automates the build process for Wireshark 3.1.X (dev) on Kali | |
# Last tested: Nov 12 2019 | |
import os | |
import shutil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glob | |
all_ssids = set([]) | |
for input_file in glob.glob('*.csv'): | |
with open(input_file) as fd: | |
for line in fd: | |
if line.split(',')[0] == 'BSSID': | |
continue | |
if line.split(',')[0] == 'Station MAC': | |
break | |
line_len = len(line.split(',')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Name: redir-create.sh | |
# Author: @s0lst1c3 | |
# Description: Simple Bash script that creates a mod_rewrite redirector | |
# using Joe Vest's cs2modrewrite tool. | |
# Syntax: ./redir-create.sh <profile path> <teamserver url> <decoy url> <redirector ip> <ssh user> <domain> | |
#!/bin/bash | |
apache_default_ssl_conf="/etc/apache2/sites-enabled/default-ssl.conf" | |
apache_conf="/etc/apache2/apache2.conf" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Source: https://w1.fi/cgit/hostap/plain/hostapd/hostapd.conf | |
##### IEEE 802.1X-2004 related configuration ################################## | |
# Require IEEE 802.1X authorization | |
#ieee8021x=1 | |
# IEEE 802.1X/EAPOL version | |
# hostapd is implemented based on IEEE Std 802.1X-2004 which defines EAPOL | |
# version 2. However, there are many client implementations that do not handle |
OlderNewer