-
-
Notifications
You must be signed in to change notification settings - Fork 393
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sudomy-v1.2.0#dev - Update Engine & Version
- Loading branch information
Showing
15 changed files
with
292 additions
and
64 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
branches: master | ||
|
||
env: | ||
VERSION: v1.1.9-dev | ||
VERSION: v1.2.0-dev | ||
|
||
jobs: | ||
build: | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#-Metadata----------------------------------------------------# | ||
# Filename: Sudomy - Subdomain Enumeration & Analysis # | ||
#-Author(s)---------------------------------------------------# | ||
# Edo maland ~ @screetsec # | ||
#-Info--------------------------------------------------------# | ||
# This file is part of Sudomy project # | ||
# Engine DNSDB : Update = 2020-05-08 # | ||
#-Licence-----------------------------------------------------# | ||
# MIT License ~ http://opensource.org/licenses/MIT # | ||
#-------------------------------------------------------------# | ||
|
||
DNSDB(){ | ||
## Using API Key | ||
|
||
#local URL_DNSDB="https://api.dnsdb.info/" ## Using API DNSDB | ||
if [[ ! -z "${DNSDB_API}" ]];then | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}DNSDB${RESET}${DPADDING}\t\t[${GREEN} ✔ ${RESET}]" | ||
MAKEFILE=$(curl -gs -H "Accept: application/json" -H "X-API-Key: ${DNSDB_API}" "https://api.dnsdb.info/lookup/rrset/name/*.${DOMAIN}?limit=1000000000" | jq --raw-output -r .rrname? | sed -e 's/\.$//' | sort -u > ${OUT_DNSDB}) | ||
#for i in $(cat ${TMP_SHODAN});do echo ${i}.${DOMAIN} >> ${OUT_SHODAN}; done ; rm -r ${TMP_SHODAN} | ||
else | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}DNSDB${RESET}${DPADDING}\t\t[${RED} ✕ ${RESET}]" | ||
|
||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#-Metadata----------------------------------------------------# | ||
# Filename: Sudomy - Subdomain Enumeration & Analysis # | ||
#-Author(s)---------------------------------------------------# | ||
# Edo maland ~ @screetsec # | ||
#-Info--------------------------------------------------------# | ||
# This file is part of Sudomy project # | ||
# Engine FB Cert : Update = 2020-12-14 # | ||
#-Licence-----------------------------------------------------# | ||
# MIT License ~ http://opensource.org/licenses/MIT # | ||
#-------------------------------------------------------------# | ||
|
||
FBCERT(){ | ||
## Using API Key | ||
|
||
local URL_FB="https://graph.facebook.com/certificates" ## Using API | ||
if [[ ! -z "${FACEBOOK_TOKEN}" ]];then | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}FBcert${RESET}${DPADDING}\t\t[${GREEN} ✔ ${RESET}]" | ||
MAKEFILE=$(curl -s -X GET "${URL_FB}?query=${DOMAIN}&fields=domains&limit=10000&access_token=${FACEBOOK_TOKEN}" | jq --raw-output -r .data[].domains[]? | grep ${DOMAIN} | sed 's/\*\.//g' | sort -u > ${OUT_FBCERT}) | ||
else | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}FBcert${RESET}${DPADDING}\t\t[${RED} ✕ ${RESET}]" | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#-Metadata----------------------------------------------------# | ||
# Filename: Sudomy - Subdomain Enumeration & Analysis # | ||
#-Author(s)---------------------------------------------------# | ||
# Edo maland ~ @screetsec # | ||
#-Info--------------------------------------------------------# | ||
# This file is part of Sudomy project # | ||
# Engine RISKIQ : Update = 2020-12-14 # | ||
#-Licence-----------------------------------------------------# | ||
# MIT License ~ http://opensource.org/licenses/MIT # | ||
#-------------------------------------------------------------# | ||
|
||
RISKIQ(){ | ||
## Using API Key | ||
|
||
local URL_RISKIQ="https://api.passivetotal.org/v2/enrichment/subdomains" ## Using API | ||
if [[ ! -z "${PASSIVE_API}" ]];then | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}RiskIQ${RESET}${DPADDING}\t\t[${GREEN} ✔ ${RESET}]" | ||
MAKEFILE=$(curl --silent -u "${PASSIVE_API}" "${URL_RISKIQ}?query=${DOMAIN}" | jq --raw-output -r .subdomains[]? | sort -u > ${TMP_RISKIQ}) | ||
for i in $(cat ${TMP_RISKIQ});do echo ${i}.${DOMAIN} >> ${OUT_RISKIQ}; done ; rm -r ${TMP_RISKIQ} | ||
else | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}RiskIQ${RESET}${DPADDING}\t\t[${RED} ✕ ${RESET}]" | ||
|
||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#-Metadata----------------------------------------------------# | ||
# Filename: Sudomy - Subdomain Enumeration & Analysis # | ||
#-Author(s)---------------------------------------------------# | ||
# Edo maland ~ @screetsec # | ||
#-Info--------------------------------------------------------# | ||
# This file is part of Sudomy project # | ||
# Engine Spyse : Update = 2020-12-14 # | ||
#-Licence-----------------------------------------------------# | ||
# MIT License ~ http://opensource.org/licenses/MIT # | ||
#-------------------------------------------------------------# | ||
|
||
SPYSE(){ | ||
## Using API Key | ||
|
||
local URL_SPYSE="https://api.spyse.com/v3/data/domain/subdomain" ## Using API | ||
if [[ ! -z "${SPYSE_API}" ]];then | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}Spyse${RESET}${DPADDING}\t\t[${GREEN} ✔ ${RESET}]" | ||
MAKEFILE=$(curl -s -X GET "${URL_SPYSE}?domain=${DOMAIN}&limit=100" -H "accept: application/json" -H "Authorization: Bearer ${SPYSE_API}" | jq --raw-output -r '.data.items[].name?' | sort -u > ${OUT_SPYSE}) | ||
#for i in $(cat ${TMP_SHODAN});do echo ${i}.${DOMAIN} >> ${OUT_SHODAN}; done ; rm -r ${TMP_SHODAN} | ||
else | ||
echo -e "${PADDING}${YELLOW}${PADDING}⍥${PADDING}${RESET}Spyse${RESET}${DPADDING}\t\t[${RED} ✕ ${RESET}]" | ||
|
||
fi | ||
} | ||
|
Binary file not shown.
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
Binary file not shown.
Oops, something went wrong.