Skip to content

Instantly share code, notes, and snippets.

@macostag
Created January 15, 2018 03:45
Show Gist options
  • Save macostag/3f47d9a5e1dcde0a5129aea5a37c7a34 to your computer and use it in GitHub Desktop.
Save macostag/3f47d9a5e1dcde0a5129aea5a37c7a34 to your computer and use it in GitHub Desktop.
Installation of additional tools in KALI Linux
#Setup
#------
#Setup Metasploit database
service postgresql start
update-rc.d postgresql enable
msfdb init
#Installation
#--------------
#HTTPScreenShot
pip install selenium
git clone https://github.com/breenmachine/httpscreenshot.git
cd httpscreenshot/
chmod +x install-dependencies.sh && ./install-dependencies.sh
#SMBExec
git clone https://github.com/macostag/smbexec
cd smbexec/ && ./install.sh
#Gitrob
apt-get install libpq-dev
service postgresql start
sudo su postgres
createuser -s gitrob --pwprompt
createdb -O gitrob gitrob
exit
gem install gitrob
gitrob configure
#CMSmap
git clone https://github.com/Dionach/CMSmap
#Eyewitness
git clone https://github.com/ChrisTruncer/EyeWitness.git
cd EyeWitness/setup/
./setup
#Discover Scripts
git clone https://github.com/leebaird/discover.git
#The Hacker Playbook 2 - Custom Scripts
git clone https://github.com/cheetz/Easy-P.git
git clone https://github.com/cheetz/PowerShell_Popup
git clone https://github.com/cheetz/brutescrape
#DSHashes:
git clone https://github.com/bsi-group/dumpntds
cp dumpntds/dshashes.py /opt/NTDSXtract/
rm -rf dumpntds
#NoSQLMap
git clone https://github.com/codingo/NoSQLMap
python setup.py install
#Spiderfoot
wget http://sourceforge.net/projects/spiderfoot/files/spiderfoot-2.11.0-src.tar.gz/download
#WCE
wget http://www.ampliasecurity.com/research/wce_v1_41beta_universal.zip
#Mimikatz
wget https://github.com/gentilkiwi/mimikatz/archive/master.zip
#PowerSploit (PowerShell)
git clone https://github.com/PowerShellMafia/PowerSploit
#Nishang (PowerShell)
git clone https://github.com/samratashok/nishang
#Fuzzing Lists (SecLists)
git clone https://github.com/danielmiessler/SecLists
#Net-Creds Network Parsing
git clone https://github.com/DanMcInerney/net-creds.git
#WIFIPhisher
git clone https://github.com/sophron/wifiphisher.git
#Phishing-Frenzy
git clone https://github.com/pentestgeek/phishing-frenzy.git /var/www/phishing-frenzy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment