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:
| #!/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() |
| #!/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 |
| #!/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 | |
| # 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 |
| aaa | |
| aaas | |
| about | |
| acap | |
| acct | |
| acr | |
| adiumxtra | |
| afp | |
| afs | |
| aim |
| #!/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) |
I hereby claim:
To claim this, I am signing this object:
| #!/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 |
| 0 | |
| 00 | |
| 0-0 | |
| 000 | |
| 0000 | |
| 00000 | |
| 000000 | |
| 000005 | |
| 00001 |
| #!/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" |