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
access_key | |
access-token | |
access_token | |
accesstoken | |
access_token_secret | |
admin | |
admin_pass | |
admin_user | |
algolia_admin_key | |
algolia_api_key |
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 | |
# Take domain name as user input e.g jsfinder.sh domain | |
# Must have httpx.txt, resolved.txt in same directory | |
d=js | |
if [ ! -d "$d" ] | |
then | |
echo "Directory Created ..." | |
mkdir js | |
fi |
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 | |
RED=$(tput setaf 1) | |
GREEN=$(tput setaf 2) | |
BLUE=$(tput setaf 4) | |
RESET=$(tput sgr0) | |
echo "${RED} ######################################################### ${RESET}" | |
echo "${RED} # TOOLS FOR BUG BOUNTY # ${RESET}" | |
echo "${RED} ######################################################### ${RESET}" |
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 sys | |
import requests | |
import subprocess | |
from time import sleep | |
from bs4 import BeautifulSoup | |
from requests.utils import requote_uri | |
def dorking(dorks): |
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
gist.github.com | |
repl.it | |
codepad.co | |
scribd.com | |
npmjs.com | |
npm.runkit.com | |
trello.com | |
libraries.io | |
coggle.it | |
papaly.com |
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 | |
# Usage: python googledorker.py example.com | |
# Need two dork files | |
# dorks, vendor | |
import sys | |
import requests | |
import subprocess | |
from time import sleep | |
from bs4 import BeautifulSoup |
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 | |
# Subdomain enumerate from subdomainfinder.c99.nl | |
# Usage: python c99finder.py example.com outputfile | |
import sys | |
import requests | |
import subprocess | |
from bs4 import BeautifulSoup | |
try: |
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/python3 | |
#Very simple script for grabbing parameters from js | |
#Need a file contains js url | |
import sys | |
import requests | |
import subprocess | |
fileinput = sys.argv[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 | |
while IFS="" read -r p | |
do | |
strip=$(echo $p | sed 's/https\?:\/\///') | |
masscan -p1-65535 $(dig +short $strip|grep -oE "\b([0-9]{1,3}\.){3}[0-9]{1,3}\b"|head -1) --max-rate 1000 | |
done < $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 | |
echo "#########################################" | |
echo "# Github Recon Scripts #" | |
echo "# By gwen001 #" | |
echo "# Bash Script By @noobsdt #" | |
echo "#########################################" | |
echo "" | |
echo "1. github-endpoints.py" | |
echo "2. github-grabrepo.php" |
NewerOlder