This file contains 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
#!/bin/bash | |
# Usage : ./scanio.sh <save file> | |
# Example: ./scanio.sh cname_list.txt | |
# Premium | |
function ech() { | |
spinner=( "|" "/" "-" "\\" ) | |
while true; do | |
for i in ${spinner[@]}; do | |
echo -ne "\r[$i] $1" |
This file contains 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
#!/bin/bash | |
# Bash script to install the latest version of Go (For linux) | |
# Get current version of Go for 64-bit Linux | |
CUR=$(curl -s https://golang.org/dl/ | grep linux-amd64 | grep 'download downloadBox' | cut -d'"' -f4) | |
# Download Go | |
wget $CUR | |
# Get filename |
This file contains 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 | |
# An overkill directory traversal fuzzing wordlist generator. | |
# Creates approx. 931 items. | |
import base64 | |
import sys | |
import urllib.parse | |
string = sys.argv[1] | |
# Encodings taken dotdotpwn |
This file contains 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
aaa | |
aaas | |
about | |
acap | |
acct | |
acr | |
adiumxtra | |
afp | |
afs | |
aim |
This file contains 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
#!/bin/bash | |
# PoC Email Account Checker - Checks for emails that don't exist so they can be (re)created | |
# Use Chrome's Network tab to view the URL that makes these type of requests. | |
# This is just a PoC, you can add in other email services along with other domains the current ones provide. | |
# URLs have been working all night, but might need to be updated in the future. | |
# | |
# Usage: ./account_checker.sh <email_list> | |
function google() { | |
# Post data |
This file contains 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
#!/bin/bash | |
# This script will fetch the Alexa top 1 million domains and prepare them how I like it. | |
# Check if unzip is installed | |
[ -f /usr/bin/unzip ] || sudo apt-get install unzip | |
# Get Alexa Top 1 mil | |
wget -q --show-progress http://s3.amazonaws.com/alexa-static/top-1m.csv.zip | |
# Unzip |
This file contains 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 | |
# Google Groups v1 | |
# python3 ggroup.py domains.txt | |
import requests | |
import re | |
import sys | |
with open(sys.argv[1]) as f: | |
sites = f.read().splitlines() |
This file contains 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 python | |
import requests, base64, re, sys | |
r = requests.get("https://keybase.io/" + sys.argv[1] + "/key.asc") | |
body = r.text.split("\n\n") | |
key = body[1].split("-----") | |
for email in re.findall(r' <(.*?)>', str(base64.b64decode(key[0]))): | |
print(email) |
This file contains 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
#!/bin/bash | |
# ./chromeExtDL.sh <extension id> <path to save location> | |
curl -s -L -o "/tmp/$1.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$1%26uc" | |
unzip -d $2 /tmp/$1.zip | |
rm /tmp/$1.zip |
This file has been truncated, but you can view the full file.
This file contains 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
0 | |
00 | |
0-0 | |
000 | |
0000 | |
00000 | |
000000 | |
000005 | |
00001 | |
00002 |
NewerOlder