forked from trustedsec/ptf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request trustedsec#429 from Zawadidone/master
Changed installation of tools
- Loading branch information
Showing
19 changed files
with
141 additions
and
123 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,28 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Parameth | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update parameth" | ||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="https://github.com/maK-/parameth" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="parameth" | ||
|
||
DEBIAN="" | ||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="python,python-pip" | ||
|
||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="cd {INSTALL_LOCATION}, pip install -r requirements.txt" | ||
|
||
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL | ||
LAUNCHER="parameth" |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
AUTHOR="Zawadi Done" | ||
AUTHOR="Zawadi Done" | ||
|
||
DESCRIPTION="This module wil install/update amass" | ||
DESCRIPTION="This module wil install/update amass" | ||
|
||
INSTALL_TYPE="GIT" | ||
|
||
REPOSITORY_LOCATION="https://github.com/caffix/amass" | ||
REPOSITORY_LOCATION="https://github.com/OWASP/Amass" | ||
|
||
INSTALL_LOCATION="amass" | ||
|
||
DEBIAN="golang" | ||
|
||
AFTER_COMMANDS="cd ~/go/bin,go get -u github.com/caffix/amass,cp amass /usr/local/bin/" | ||
DEBIAN="snapd" | ||
|
||
AFTER_COMMANDS="export GOPATH=$HOME/go,systemctl start snapd,snap install amass, echo 'You need to reboot before using Amass', sleep 5" |
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 |
---|---|---|
@@ -1,13 +1,25 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Gitrob | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update Gitrob" | ||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="https://github.com/michenriksen/gitrob" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="gitrob" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="golang" | ||
|
||
AFTER_COMMANDS="cd {INSTALL_LOCATION}, go get github.com/michenriksen/gitrob,cp ~/go/bin/gitrob /usr/local/bin" | ||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="export GOPATH=$HOME/go,go get github.com/michenriksen/gitrob,cp ~/go/bin/gitrob /usr/local/bin" |
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 |
---|---|---|
@@ -1,15 +1,28 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Gobuster | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update GoBuster" | ||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="https://github.com/OJ/gobuster" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="gobuster" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="golang" | ||
|
||
AFTER_COMMANDS="go get github.com/OJ/gobuster,cp /root/go/bin/gobuster /usr/local/bin" | ||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="export GOPATH=$HOME/go,go get github.com/OJ/gobuster,cp ~/go/bin/gobuster /usr/local/bin" | ||
|
||
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL | ||
LAUNCHER="" |
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 |
---|---|---|
@@ -1,16 +1,26 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Gowitness | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update Gowitness" | ||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="https://github.com/sensepost/gowitness" | ||
|
||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="gowitness" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="golang" | ||
|
||
AFTER_COMMANDS="cd {INSTALL_LOCATION},go get -v -u github.com/golang/dep/cmd/dep,cd ~/go/src, git clone https://github.com/sensepost/gowitness, cd gowitness,dep ensure, go build, cp gowitness /usr/local/bin/, wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb, dpkg -i google-chrome-stable_current_amd64.deb, apt install -f, dpkg -i google-chrome-stable_current_amd64.deb, rm *.deb" | ||
|
||
LAUNCHER="" | ||
|
||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="export GOPATH=$HOME/go,go get -u github.com/golang/dep/cmd/dep,cp ~/go/bin/dep /usr/local/bin/,cd /root/go/src,git clone https://github.com/sensepost/gowitness .,cd gowitness,dep ensure -update,make,cd build,cp gowitness-linux-amd64 gowitness,cp /root/go/src/gowitness/build/gowitness /usr/local/bin/,cd {INSTALL_LOCATION},wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb, dpkg -i google-chrome-stable_current_amd64.deb, apt install -f -y, dpkg -i google-chrome-stable_current_amd64.deb, rm google-chrome-stable_current_amd64.deb" |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,25 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Subfinder | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update Subfinder" | ||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
REPOSITORY_LOCATION="go get github.com/Ice3man543/subfinder" | ||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="github.com/Ice3man543/subfinder" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="subfinder" | ||
|
||
DEBIAN="" | ||
|
||
AFTER_COMMANDS="cd ~/go/bin, go get -u github.com/Ice3man543/subfinder, cp subfinder /usr/local/bin/" | ||
# WHERE DO YOU WANT TO INSTALL IT | ||
DEBIAN="golang" | ||
|
||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="go get -u github.com/Ice3man543/subfinder,cp ~/go/bin/subfinder /usr/local/bin/" |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,25 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for SubOver | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update SubOver" | ||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="https://github.com/Ice3man543/SubOver" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="subover" | ||
|
||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="golang" | ||
|
||
AFTER_COMMANDS="cd ~/go/bin/,go get github.com/Ice3man543/SubOver, mv SubOver /usr/local/bin/subover" | ||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="export GOPATH=$HOME/go,go get github.com/Ice3man543/SubOver,cp ~/go/bin/SubOver /usr/local/bin/subover" |
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 |
---|---|---|
@@ -1,17 +1,28 @@ | ||
#!/usr/bin/env python | ||
##################################### | ||
# Installation module for Turbolist3r | ||
##################################### | ||
|
||
# AUTHOR OF MODULE NAME | ||
AUTHOR="Zawadi Done" | ||
|
||
# DESCRIPTION OF THE MODULE | ||
DESCRIPTION="This module wil install/update Turbolist3r" | ||
|
||
|
||
# INSTALL TYPE GIT, SVN, FILE DOWNLOAD | ||
INSTALL_TYPE="GIT" | ||
|
||
|
||
# LOCATION OF THE FILE OR GIT/SVN REPOSITORY | ||
REPOSITORY_LOCATION="https://github.com/fleetcaptain/Turbolist3r" | ||
|
||
# WHERE DO YOU WANT TO INSTALL IT | ||
INSTALL_LOCATION="turbolist3r" | ||
|
||
DEBIAN="python-requests" | ||
# DEPENDS FOR DEBIAN INSTALLS | ||
DEBIAN="python,python-pip,python-requests" | ||
|
||
AFTER_COMMANDS="cd {INSTALL_LOCATION}, pip install -r requirements.txt" | ||
# COMMANDS TO RUN AFTER | ||
AFTER_COMMANDS="cd {INSTALL_LOCATION}, pip install -r requirements.txt, chmod+x turbolist3r.py" | ||
|
||
# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL | ||
LAUNCHER="turbolist3r" |
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
Oops, something went wrong.