Skip to content

Commit 240f150

Browse files
authored
Merge pull request #655 from Goultarde/dev
Add subzy tool and support for golang 1.23.0
2 parents 819ef43 + 575e074 commit 240f150

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
subzy run --target "$DOMAIN"
2+
subzy run --targets subdomains.txt
3+
subzy run --targets subdomains.txt --hide_fails
4+
subzy run --targets subdomains.txt --concurrency 50 --output sto.json

sources/install/package_base.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function install_go() {
6262
asdf install golang 1.23.0
6363
# Default GO version: 1.22.2
6464
asdf install golang 1.22.2
65-
asdf set --home golang 1.22.2
65+
asdf set --home golang 1.22.2 1.23.0
6666
fi
6767

6868
# if command -v /usr/local/go/bin/go &>/dev/null; then

sources/install/package_web.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -986,6 +986,17 @@ function install_bbot() {
986986
add-to-list "BBOT,https://github.com/blacklanternsecurity/bbot,BEE·bot is a multipurpose scanner inspired by Spiderfoot built to automate your Recon and ASM."
987987
}
988988

989+
function install_subzy() {
990+
# CODE-CHECK-WHITELIST=add-aliases
991+
colorecho "Installing subzy"
992+
asdf set golang 1.23.0
993+
go install -v github.com/PentestPad/subzy@latest
994+
asdf reshim golang
995+
add-history subzy
996+
add-test-command "subzy --help"
997+
add-to-list "subzy,https://github.com/PentestPad/subzy,Subdomain takeover tool which checks for various cloud services and identifies if a subdomain is vulnerable."
998+
}
999+
9891000
function install_urldedupe() {
9901001
# CODE-CHECK-WHITELIST=add-aliases
9911002
colorecho "Installing urldedupe"
@@ -1116,6 +1127,7 @@ function package_web() {
11161127
install_caido # Caido
11171128
install_token_exploiter # Github personal token Analyzer
11181129
install_bbot # Recursive Scanner
1130+
install_subzy # Subdomain takeover tool
11191131
install_urldedupe # Get back a list of deduplicated (unique) URL and query string combination.
11201132
install_curlie # Mix of cURL and HTTPie
11211133
install_xxeinjector # XXE injection testing tool

0 commit comments

Comments
 (0)