#! /usr/bin/env python3
import sys
import os
# print(os.system('ls'))
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
cat asset-domains.txt | while read line; do echo $line; done | |
cat asset-domains.txt | while read x; do nmap -Pn $(dig +short $x | head -n1); done | |
cat asset-domains.txt | while read x; do <perform any function like nmap OR directory brutE OR recursive subdomains , sub bruteforc>; done | |
#echo xyz.google.com | rev | awk -F'.' '{print $1\.$2\.$3}' | rev |
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
subfinder | |
findomain | |
findomain -t google.com -o -> this outputs the file contents to file with given file name (--help for more) | |
findomain -t google.com -u customized-filename.txt | |
aron - parameter bruteforcing |
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 | |
# findomain, subfinder, crtsh, massdns, | |
# must include amass, bruteforcing domains , port scanning | |
# massdns, findomain binaries must be in /usr/local/bin | |
# my .bash_profile must be present | |
# Author oyenom |
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 python3 | |
import os | |
import urllib.parse as ul | |
import sys | |
for line in sys.stdin.readlines(): | |
decode = ul.unquote(str(line)) |
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 python3 | |
import sys | |
import os | |
for line in sys.stdin.readlines(): | |
data = line.strip() | |
print(data) |
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
{ | |
"import-2431382345": { | |
"title": "Burp_suite", | |
"type": 1, | |
"color": "#130001", | |
"address": "127.0.0.1", | |
"port": 8080, | |
"active": true, | |
"whitePatterns": [ | |
{ |
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 | |
findomain -t $1 -q | tee $1.txt | |
subfinder -d $1 -silent | tee -a $1.txt | |
#crtsh | |
crtsh(){ | |
curl -s https://crt.sh/?q\=%.$1\&output\=json | jq -r '.[].name_value' | sed 's/\*\.//g' | sort -u | |
} |
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 | |
findomain -t $1 -q | tee $1.txt | |
subfinder -d $1 -silent | tee -a $1.txt | |
#crtsh | |
crtsh(){ | |
curl -s https://crt.sh/?q\=%.$1\&output\=json | jq -r '.[].name_value' | sed 's/\*\.//g' | sort -u | |
} |
This goes with the Traversy Media Scrapy tutorial on YouTube
pip install scrapy
OlderNewer