├── .gitignore ├── .gitmodules ├── install-deps.sh └── update.sh /.gitignore: -------------------------------------------------------------------------------- 1 | Exploitation/CobaltStrike 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Lists/SecLists"] 2 | path = Lists/SecLists 3 | url = https://github.com/danielmiessler/SecLists.git 4 | [submodule "Recon/aiodnsbrute"] 5 | path = Recon/aiodnsbrute 6 | url = https://github.com/blark/aiodnsbrute.git 7 | [submodule "Recon/Sublist3r"] 8 | path = Recon/Sublist3r 9 | url = https://github.com/aboul3la/Sublist3r.git 10 | [submodule "Recon/gobuster"] 11 | path = Recon/gobuster 12 | url = https://github.com/OJ/gobuster.git 13 | [submodule "Exploitation/msf"] 14 | path = Exploitation/msf 15 | url = https://github.com/rapid7/metasploit-framework.git 16 | [submodule "Recon/aquatone"] 17 | path = Recon/aquatone 18 | url = https://github.com/michenriksen/aquatone.git 19 | [submodule "Networking/doxycannon"] 20 | path = Networking/doxycannon 21 | url = https://github.com/audibleblink/doxycannon.git 22 | [submodule "Exploitation/exploitdb"] 23 | path = Exploitation/exploitdb 24 | url = https://github.com/offensive-security/exploitdb.git 25 | [submodule "Payloads/SharpShooter"] 26 | path = Payloads/SharpShooter 27 | url = https://github.com/mdsecactivebreach/SharpShooter.git 28 | [submodule "Payloads/demiguise"] 29 | path = Payloads/demiguise 30 | url = https://github.com/nccgroup/demiguise.git 31 | [submodule "Exploitation/Empire"] 32 | path = Exploitation/Empire 33 | url = https://github.com/EmpireProject/Empire.git 34 | [submodule "Exploitation/koadic"] 35 | path = Exploitation/koadic 36 | url = https://github.com/zerosum0x0/koadic.git 37 | [submodule "Payloads/revshelloneliner"] 38 | path = Payloads/revshelloneliner 39 | url = https://github.com/r3dg33k/Oneliner-Reverse-Shell-Command-Generator-Script.git 40 | [submodule "Recon/theHarvester"] 41 | path = Recon/theHarvester 42 | url = https://github.com/laramies/theHarvester.git 43 | [submodule "Recon/SprayingToolkit"] 44 | path = Recon/SprayingToolkit 45 | url = https://github.com/byt3bl33d3r/SprayingToolkit.git 46 | [submodule "Recon/masscan"] 47 | path = Recon/masscan 48 | url = https://github.com/robertdavidgraham/masscan.git 49 | [submodule "Recon/Photon"] 50 | path = Recon/Photon 51 | url = https://github.com/s0md3v/Photon.git 52 | [submodule "Recon/Zen"] 53 | path = Recon/Zen 54 | url = https://github.com/s0md3v/Zen.git 55 | [submodule "Recon/wpscan"] 56 | path = Recon/wpscan 57 | url = https://github.com/wpscanteam/wpscan.git 58 | [submodule "Exploitation/drupwn"] 59 | path = Exploitation/drupwn 60 | url = https://github.com/immunIT/drupwn.git 61 | [submodule "Recon/joomscan"] 62 | path = Recon/joomscan 63 | url = https://github.com/rezasp/joomscan.git 64 | [submodule "Recon/Hash-Buster"] 65 | path = Recon/Hash-Buster 66 | url = https://github.com/s0md3v/Hash-Buster.git 67 | [submodule "Exploitation/patator"] 68 | path = Exploitation/patator 69 | url = https://github.com/lanjelot/patator.git 70 | [submodule "AD/Responder"] 71 | path = AD/Responder 72 | url = https://github.com/lgandx/Responder.git 73 | [submodule "AD/ruler"] 74 | path = AD/ruler 75 | url = https://github.com/sensepost/ruler.git 76 | [submodule "AD/SprayingToolkit"] 77 | path = AD/SprayingToolkit 78 | url = https://github.com/byt3bl33d3r/SprayingToolkit.git 79 | [submodule "AD/Impacket"] 80 | path = AD/Impacket 81 | url = https://github.com/SecureAuthCorp/impacket.git 82 | [submodule "Recon/EmailGen"] 83 | path = Recon/EmailGen 84 | url = https://github.com/navisecdelta/EmailGen.git 85 | -------------------------------------------------------------------------------- /install-deps.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd Recon 4 | 5 | for f in $(bash -c ls); 6 | do 7 | cd $f 8 | 9 | if [[ -f requirements.txt ]] 10 | then 11 | echo "$f is python!" 12 | pip install -r requirements.txt 13 | pip3 install -r requirements.txt 14 | fi 15 | 16 | if [[ -f Gemfile ]] 17 | then 18 | echo "$f is ruby!" 19 | bundle install 20 | fi 21 | 22 | cd .. 23 | done 24 | -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | git submodule update --init --recursive 4 | git submodule foreach --recursive git fetch 5 | git submodule foreach git merge origin master 6 | --------------------------------------------------------------------------------