Skip to content

Commit

Permalink
Merge pull request trustedsec#429 from Zawadidone/master
Browse files Browse the repository at this point in the history
Changed installation of tools
  • Loading branch information
trustedsec authored Feb 9, 2019
2 parents 043baab + f96fa54 commit a0830e7
Show file tree
Hide file tree
Showing 19 changed files with 141 additions and 123 deletions.
15 changes: 0 additions & 15 deletions modules/exploitation/findsploit.py

This file was deleted.

15 changes: 14 additions & 1 deletion modules/exploitation/parameth.py
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"
2 changes: 1 addition & 1 deletion modules/exploitation/pret.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
INSTALL_LOCATION="pret"

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git,python-pip,imagemagick,ghostscript"
DEBIAN="git,python,python-pip,imagemagick,ghostscript"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="pip install colorama pysnmp"
Expand Down
14 changes: 0 additions & 14 deletions modules/exploitation/wpsploit.py

This file was deleted.

11 changes: 5 additions & 6 deletions modules/intelligence-gathering/amass.py
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"
14 changes: 13 additions & 1 deletion modules/intelligence-gathering/gitrob.py
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"
15 changes: 14 additions & 1 deletion modules/intelligence-gathering/gobuster.py
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=""
18 changes: 14 additions & 4 deletions modules/intelligence-gathering/gowitness.py
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"
4 changes: 2 additions & 2 deletions modules/intelligence-gathering/hacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

INSTALL_LOCATION="hacks"

DEBIAN=""
DEBIAN="git"

AFTER_COMMANDS="cd {INSTALL_LOCATION},cd .., cp -R hacks/. /usr/local/bin/"
AFTER_COMMANDS="cd {INSTALL_LOCATION}, rm LICENSE README LICENSE, cp -r * /usr/local/bin/"

2 changes: 1 addition & 1 deletion modules/intelligence-gathering/massdns.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

INSTALL_LOCATION="massdns"

DEBIAN=""
DEBIAN="libldns-dev,build-essential,gcc"

AFTER_COMMANDS="cd {INSTALL_LOCATION},make,cp bin/massdns /usr/local/bin/"

Expand Down
28 changes: 0 additions & 28 deletions modules/intelligence-gathering/passhunt.py

This file was deleted.

19 changes: 15 additions & 4 deletions modules/intelligence-gathering/subfinder.py
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/"
33 changes: 0 additions & 33 deletions modules/intelligence-gathering/subjack.py

This file was deleted.

14 changes: 13 additions & 1 deletion modules/intelligence-gathering/subover.py
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"
4 changes: 2 additions & 2 deletions modules/intelligence-gathering/theHarvester.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
INSTALL_LOCATION="theharvester"

# DEPENDS FOR DEBIAN INSTALLS
DEBIAN="git python python-requests"
DEBIAN="git,python3,python3-pip"

# DEPENDS FOR FEDORA INSTALLS
FEDORA="git"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS=""
AFTER_COMMANDS="cd {INSTALL_LOCATION},pip3 install -r requirements.txt"

# CREATE LAUNCHER
LAUNCHER="theHarvester"
19 changes: 15 additions & 4 deletions modules/intelligence-gathering/turbolist3r.py
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"
2 changes: 1 addition & 1 deletion modules/post-exploitation/ruler.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
FEDORA="git,golang"

# COMMANDS TO RUN AFTER
AFTER_COMMANDS="go get github.com/sensepost/ruler,go get -u github.com/sensepost/ruler"
AFTER_COMMANDS="export GOPATH=$HOME/go,go get github.com/sensepost/ruler,go get -u github.com/sensepost/ruler"

# THIS WILL CREATE AN AUTOMATIC LAUNCHER FOR THE TOOL
LAUNCHER=""
Expand Down
Loading

0 comments on commit a0830e7

Please sign in to comment.