├── .gitmodules ├── README.md ├── ike_transforms.sh ├── phantomjs └── rvm_README.txt /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "peepingtom"] 2 | path = peepingtom 3 | url = https://bitbucket.org/LaNMaSteR53/peepingtom.git 4 | [submodule "sqlmap"] 5 | path = sqlmap 6 | url = https://github.com/sqlmapproject/sqlmap.git 7 | [submodule "groupenum"] 8 | path = groupenum 9 | url = https://github.com/SpiderLabs/groupenum.git 10 | [submodule "Responder"] 11 | path = Responder 12 | url = https://github.com/SpiderLabs/Responder.git 13 | [submodule "PowerUp"] 14 | path = PowerUp 15 | url = https://github.com/HarmJ0y/PowerUp.git 16 | [submodule "smbexec"] 17 | path = smbexec 18 | url = https://github.com/pentestgeek/smbexec.git 19 | [submodule "PowerSploit"] 20 | path = PowerSploit 21 | url = https://github.com/mattifestation/PowerSploit.git 22 | [submodule "svn-extractor"] 23 | path = svn-extractor 24 | url = https://github.com/anantshri/svn-extractor.git 25 | [submodule "Veil-Evasion"] 26 | path = Veil-Evasion 27 | url = https://github.com/Veil-Framework/Veil-Evasion.git 28 | [submodule "Veil-Catapult"] 29 | path = Veil-Catapult 30 | url = https://github.com/Veil-Framework/Veil-Catapult.git 31 | [submodule "metasploit-framework"] 32 | path = metasploit-framework 33 | url = https://github.com/rapid7/metasploit-framework.git 34 | [submodule "arachni"] 35 | path = arachni 36 | url = https://github.com/Arachni/arachni.git 37 | [submodule "pykek"] 38 | path = pykek 39 | url = git@github.com:bidord/pykek.git 40 | [submodule "PowerShell"] 41 | path = PowerShell 42 | url = https://github.com/clymb3r/PowerShell.git 43 | [submodule "beef"] 44 | path = beef 45 | url = https://github.com/beefproject/beef.git 46 | [submodule "ridenum"] 47 | path = ridenum 48 | url = https://github.com/trustedsec/ridenum 49 | [submodule "impacket"] 50 | path = impacket 51 | url = https://github.com/CoreSecurity/impacket.git 52 | [submodule "pipal"] 53 | path = pipal 54 | url = https://github.com/digininja/pipal.git 55 | [submodule "sslscan"] 56 | path = sslscan 57 | url = https://github.com/rbsec/sslscan.git 58 | [submodule "wpscan"] 59 | path = wpscan 60 | url = https://github.com/wpscanteam/wpscan.git 61 | [submodule "unicorn"] 62 | path = unicorn 63 | url = https://github.com/trustedsec/unicorn.git 64 | [submodule "dnsrecon"] 65 | path = dnsrecon 66 | url = https://github.com/darkoperator/dnsrecon.git 67 | [submodule "meterssh"] 68 | path = meterssh 69 | url = https://github.com/trustedsec/meterssh.git 70 | [submodule "Inveigh"] 71 | path = Inveigh 72 | url = https://github.com/Kevin-Robertson/Inveigh.git 73 | [submodule "wifiphisher"] 74 | path = wifiphisher 75 | url = https://github.com/sophron/wifiphisher.git 76 | [submodule "PowerTools"] 77 | path = PowerTools 78 | url = https://github.com/PowerShellEmpire/PowerTools.git 79 | [submodule "nishang"] 80 | path = nishang 81 | url = https://github.com/samratashok/nishang.git 82 | [submodule "windows-privesc-check"] 83 | path = windows-privesc-check 84 | url = https://github.com/pentestmonkey/windows-privesc-check.git 85 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | security_tools 2 | ========= 3 | 4 | To pull all sub-modules, execute this after the initial clone: 5 | 6 | ``` 7 | git submodule update --init --recursive 8 | ``` 9 | 10 | To update all of the sub-modules, execute this: 11 | 12 | ``` 13 | git submodule foreach git pull 14 | ``` 15 | -------------------------------------------------------------------------------- /ike_transforms.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Encryption algorithms: DES, Triple-DES, AES/128, AES/192 and AES/256 4 | ENCLIST="1 5 7/128 7/192 7/256" 5 | # Hash algorithms: MD5 and SHA1 6 | HASHLIST="1 2" 7 | # Authentication methods: Pre-Shared Key, RSA Signatures, Hybrid Mode and XAUTH 8 | AUTHLIST="1 3 64221 65001" 9 | # Diffie-Hellman groups: 1, 2 and 5 10 | GROUPLIST="1 2 5" 11 | # 12 | for ENC in $ENCLIST; do 13 | for HASH in $HASHLIST; do 14 | for AUTH in $AUTHLIST; do 15 | for GROUP in $GROUPLIST; do 16 | # echo "--trans=$ENC,$HASH,$AUTH,$GROUP" 17 | echo "Using: $ENC,$HASH,$AUTH,$GROUP" >> ike.txt 18 | ike-scan -A -M --trans=$ENC,$HASH,$AUTH,$GROUP --id=mygroup >> ike.txt 19 | echo "\r\n" >> ike.txt 20 | done 21 | done 22 | done 23 | done 24 | -------------------------------------------------------------------------------- /phantomjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandreko/security_tools/32c2eb2b00f944f3c6e96f8a53a5fd727b017358/phantomjs -------------------------------------------------------------------------------- /rvm_README.txt: -------------------------------------------------------------------------------- 1 | https://rvm.io/rvm/offline 2 | --------------------------------------------------------------------------------