I hereby claim:
- I am haccer on github.
- I am htp (https://keybase.io/htp) on keybase.
- I have a public key whose fingerprint is BA63 0D64 4F88 A8C5 93EE F1F8 1D38 581F FA90 9452
To claim this, I am signing this object:
#!/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 |
#!/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" |
0 | |
00 | |
0-0 | |
000 | |
0000 | |
00000 | |
000000 | |
000005 | |
00001 | |
00002 |
#!/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 |
I hereby claim:
To claim this, I am signing this object:
#!/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) |
aaa | |
aaas | |
about | |
acap | |
acct | |
acr | |
adiumxtra | |
afp | |
afs | |
aim |
#!/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 |
#!/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 |
#!/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 |