├── README.md ├── list.sh ├── modules ├── android │ └── Readme.md ├── exploitationTools │ ├── Readme.md │ ├── clustered │ ├── dnsteal │ ├── jexboss │ └── weevely ├── forensic │ ├── Readme.md │ ├── exe2image │ └── usbtracker ├── informationGathering │ ├── Readme.md │ ├── cangibrina │ ├── cloudflare_enum │ ├── dnstwist │ ├── gin │ ├── gobuster │ ├── ircsnapshot │ ├── knock │ ├── masscan │ ├── metagoofil │ ├── shocker │ ├── whatportis │ └── whois ├── passwordAttacks │ ├── CeWL │ ├── Readme.md │ ├── hashID │ ├── oclhashcat-amd-2.01 │ └── oclhashcat-nvidia-2.01 ├── privacy │ ├── Readme.md │ └── spoofmac ├── reverseEngineering │ ├── Readme.md │ └── binwalk ├── sniffing │ ├── Readme.md │ ├── evilfoca │ ├── evilgrade │ ├── intercepter-ng │ ├── mitmproxy │ ├── netcat │ └── nighthawk ├── stressTesting │ ├── Readme.md │ └── loic ├── vulnerabilityAnalysis │ ├── Readme.md │ ├── dbpwaudit │ ├── dnsteal │ └── routerhunter └── webApplications │ ├── BSQLinjector │ ├── LFiFreak │ ├── NoSQLMap │ ├── Readme.md │ ├── arachni │ ├── arachni_web │ ├── cansina │ ├── hqlmap │ ├── hsecscan │ ├── imagejs │ ├── joomlascan │ ├── joomlavs │ ├── wafw00f │ ├── whatweb │ ├── xssless │ ├── xsssniper │ └── xxeinjector ├── toolsmanager.py └── update.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/README.md -------------------------------------------------------------------------------- /list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/list.sh -------------------------------------------------------------------------------- /modules/android/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/android/Readme.md -------------------------------------------------------------------------------- /modules/exploitationTools/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/exploitationTools/Readme.md -------------------------------------------------------------------------------- /modules/exploitationTools/clustered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/exploitationTools/clustered -------------------------------------------------------------------------------- /modules/exploitationTools/dnsteal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/exploitationTools/dnsteal -------------------------------------------------------------------------------- /modules/exploitationTools/jexboss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/exploitationTools/jexboss -------------------------------------------------------------------------------- /modules/exploitationTools/weevely: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/exploitationTools/weevely -------------------------------------------------------------------------------- /modules/forensic/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/forensic/Readme.md -------------------------------------------------------------------------------- /modules/forensic/exe2image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/forensic/exe2image -------------------------------------------------------------------------------- /modules/forensic/usbtracker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/forensic/usbtracker -------------------------------------------------------------------------------- /modules/informationGathering/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/Readme.md -------------------------------------------------------------------------------- /modules/informationGathering/cangibrina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/cangibrina -------------------------------------------------------------------------------- /modules/informationGathering/cloudflare_enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/cloudflare_enum -------------------------------------------------------------------------------- /modules/informationGathering/dnstwist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/dnstwist -------------------------------------------------------------------------------- /modules/informationGathering/gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/gin -------------------------------------------------------------------------------- /modules/informationGathering/gobuster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/gobuster -------------------------------------------------------------------------------- /modules/informationGathering/ircsnapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/ircsnapshot -------------------------------------------------------------------------------- /modules/informationGathering/knock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/knock -------------------------------------------------------------------------------- /modules/informationGathering/masscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/masscan -------------------------------------------------------------------------------- /modules/informationGathering/metagoofil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/metagoofil -------------------------------------------------------------------------------- /modules/informationGathering/shocker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/shocker -------------------------------------------------------------------------------- /modules/informationGathering/whatportis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/whatportis -------------------------------------------------------------------------------- /modules/informationGathering/whois: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/informationGathering/whois -------------------------------------------------------------------------------- /modules/passwordAttacks/CeWL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/passwordAttacks/CeWL -------------------------------------------------------------------------------- /modules/passwordAttacks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/passwordAttacks/Readme.md -------------------------------------------------------------------------------- /modules/passwordAttacks/hashID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/passwordAttacks/hashID -------------------------------------------------------------------------------- /modules/passwordAttacks/oclhashcat-amd-2.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/passwordAttacks/oclhashcat-amd-2.01 -------------------------------------------------------------------------------- /modules/passwordAttacks/oclhashcat-nvidia-2.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/passwordAttacks/oclhashcat-nvidia-2.01 -------------------------------------------------------------------------------- /modules/privacy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/privacy/Readme.md -------------------------------------------------------------------------------- /modules/privacy/spoofmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/privacy/spoofmac -------------------------------------------------------------------------------- /modules/reverseEngineering/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/reverseEngineering/Readme.md -------------------------------------------------------------------------------- /modules/reverseEngineering/binwalk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/reverseEngineering/binwalk -------------------------------------------------------------------------------- /modules/sniffing/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/Readme.md -------------------------------------------------------------------------------- /modules/sniffing/evilfoca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/evilfoca -------------------------------------------------------------------------------- /modules/sniffing/evilgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/evilgrade -------------------------------------------------------------------------------- /modules/sniffing/intercepter-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/intercepter-ng -------------------------------------------------------------------------------- /modules/sniffing/mitmproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/mitmproxy -------------------------------------------------------------------------------- /modules/sniffing/netcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/netcat -------------------------------------------------------------------------------- /modules/sniffing/nighthawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/sniffing/nighthawk -------------------------------------------------------------------------------- /modules/stressTesting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/stressTesting/Readme.md -------------------------------------------------------------------------------- /modules/stressTesting/loic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/stressTesting/loic -------------------------------------------------------------------------------- /modules/vulnerabilityAnalysis/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/vulnerabilityAnalysis/Readme.md -------------------------------------------------------------------------------- /modules/vulnerabilityAnalysis/dbpwaudit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/vulnerabilityAnalysis/dbpwaudit -------------------------------------------------------------------------------- /modules/vulnerabilityAnalysis/dnsteal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/vulnerabilityAnalysis/dnsteal -------------------------------------------------------------------------------- /modules/vulnerabilityAnalysis/routerhunter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/vulnerabilityAnalysis/routerhunter -------------------------------------------------------------------------------- /modules/webApplications/BSQLinjector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/BSQLinjector -------------------------------------------------------------------------------- /modules/webApplications/LFiFreak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/LFiFreak -------------------------------------------------------------------------------- /modules/webApplications/NoSQLMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/NoSQLMap -------------------------------------------------------------------------------- /modules/webApplications/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/Readme.md -------------------------------------------------------------------------------- /modules/webApplications/arachni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/arachni -------------------------------------------------------------------------------- /modules/webApplications/arachni_web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/arachni_web -------------------------------------------------------------------------------- /modules/webApplications/cansina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/cansina -------------------------------------------------------------------------------- /modules/webApplications/hqlmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/hqlmap -------------------------------------------------------------------------------- /modules/webApplications/hsecscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/hsecscan -------------------------------------------------------------------------------- /modules/webApplications/imagejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/imagejs -------------------------------------------------------------------------------- /modules/webApplications/joomlascan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/joomlascan -------------------------------------------------------------------------------- /modules/webApplications/joomlavs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/joomlavs -------------------------------------------------------------------------------- /modules/webApplications/wafw00f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/wafw00f -------------------------------------------------------------------------------- /modules/webApplications/whatweb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/whatweb -------------------------------------------------------------------------------- /modules/webApplications/xssless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/xssless -------------------------------------------------------------------------------- /modules/webApplications/xsssniper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/xsssniper -------------------------------------------------------------------------------- /modules/webApplications/xxeinjector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/modules/webApplications/xxeinjector -------------------------------------------------------------------------------- /toolsmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/toolsmanager.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PentestBox/scripts/HEAD/update.py --------------------------------------------------------------------------------