Just a fast stupid little shellscript to download tools from git, setup a folder structure, and throw them in there.

It doesn't check to see if the folders are there, it makes them, and run the git commands. It's meant to run on a newly installed Kali box, to populate /opt/tools in five minutes, so it doesn't perform any checks, it doesn't install the tools, you have to add that function if you have to have it. Maybe I'll make some install / update features in another version, maybe not.

Please use these tools responsibly. They should get the latest version, but some of these haven't been updated for a while, so you have to mess around with them and see wtaht works and what doesn't. Use the script, add your own stuff, and let's all be a little lazy :)

#!/bin/bash

# Stupid script to init /opt/tools on a NEWLY INSTALLED Kali Box !!
# Makes folder structure, clones the repos, and try to sort the content into logical structure
# Version 0.1 - 14 September 2020
# By NX This email address is being protected from spambots. You need JavaScript enabled to view it.

#Make folders
basedir="/root/test"

mkdir -p /$basedir/{hak5,malware,mimikatz,mitm,nishang,osint,passwords,phish,router,smb,webshells,wifi}                                                                                                      
                                                                                                                                                                                                             
# hack5                                                                                                                                                                                                      
git clone https://github.com/hak5/bashbunny-payloads.git /$basedir/hak5/bunny-payloads                                                                                                                       
git clone https://github.com/hak5/packetsquirrel-payloads.git /$basedir/hak5/squirrel-payloads                                                                                                               
                                                                                                                                                                                                             
#malware (evilcreate, unicorn)                                                                                                                                                                               
                                                                                                                                                                                                             
git clone https://github.com/LOoLzeC/Evil-create-framework.git /$basedir/malware/evilcreate                                                                                                                  
git clone https://github.com/trustedsec/unicorn.git /$basedir/malware/unicorn                                                                                                                                
                                                                                                                                                                                                             
# mimikatz                                                                                                                                                                                                   
                                                                                                                                                                                                             
git clone https://github.com/gentilkiwi/mimikatz.git /$basedir/mimikatz                                                                                                                                      
                                                                                                                                                                                                             
#mitm (bettercap, xerosploit)                                                                                                                                                                                
                                                                                                                                                                                                             
git clone https://github.com/bettercap/bettercap.git /$basedir/mitm/bettercap                                                                                                                                
git clone https://github.com/LionSec/xerosploit.git /$basedir/mitm/xerosploit                                                                                                                                
                                                                                                                                                                                                             
# nishang                                                                                                                                                                                                    

git clone https://github.com/samratashok/nishang.git /$basedir/nishang


#osint (recondog, socialscan, trape)

git clone https://github.com/s0md3v/ReconDog.git /$basedir/osint/recondog
git clone https://github.com/iojw/socialscan.git /$basedir/osint/socialscan
git clone https://github.com/jofpin/trape.git /$basedir/osint/trape

#passwords (brutescrape, pydictor)

git clone https://github.com/cheetz/brutescrape.git /$basedir/passwords/brutescrape
git clone https://github.com/LandGrey/pydictor.git /$basedir/passwords/pydictor

#phish (beef-xss, demiguise, evilginx2, socialphish)

git clone https://github.com/nccgroup/demiguise.git /$basedir/phish/demiguise
git clone https://github.com/kgretzky/evilginx2.git /$basedir/phish/evilginx2
git clone https://github.com/xHak9x/SocialPhish.git /$basedir/phish/socialphish

# router (rext, mikrotiksploit)

git clone https://github.com/threat9/routersploit.git /$basedir/router/routersploit
git clone https://github.com/HathemAhmed/MikrotikSploit.git /$basedir/router/mikrotiksploit

#smb/smbetray

git clone https://github.com/quickbreach/SMBetray.git /$basedir/smb/smbetray

#webshells/weevely3

git clone https://github.com/epinna/weevely3.git /$basedir/webshells/weevely3

# wifi / airgeddon,

git clone --depth 1 https://github.com/v1s1t0r1sh3r3/airgeddon.git /$basedir/wifi/airgeddon

#fluxion

#git clone This email address is being protected from spambots. You need JavaScript enabled to view it.:FluxionNetwork/fluxion.git
git clone https://www.github.com/FluxionNetwork/fluxion.git /$basedir/wifi/fluxion

#ghostinthenet

git clone https://github.com/cryptolok/GhostInTheNet.git /$basedir/wifi/ghostinthenet

#infernaltwin

git clone https://github.com/entropy1337/infernal-twin.git /$basedir/wifi/infernaltwin

# rogue

git clone https://github.com/InfamousSYN/rogue.git /$basedir/wifi/rogue

#wifiphisher,

git clone https://github.com/wifiphisher/wifiphisher.git /$basedir/wifi/wifiphisher

# wifite2

git clone https://github.com/derv82/wifite2.git /$basedir/wifi/wifite2

You have no rights to post comments