├── aircrack-ng └── Dockerfile ├── android-sdk └── Dockerfile ├── cobaltstrike └── Dockerfile ├── drone-burp └── Dockerfile ├── drone-inspy └── Dockerfile ├── drone-nessus └── Dockerfile ├── drone-nmap └── Dockerfile ├── inspy └── Dockerfile ├── keybase └── Dockerfile ├── kismet └── Dockerfile ├── lair ├── README.md ├── api │ ├── Dockerfile │ └── plugins │ │ └── .keep ├── app │ ├── Dockerfile │ └── package.json ├── docker-compose.yml └── proxy │ ├── Caddyfile │ ├── Dockerfile │ ├── cert.pem │ └── key.pem ├── metasploit ├── app │ └── Dockerfile ├── db │ └── Dockerfile └── docker-compose.yml ├── nessus └── Dockerfile ├── nikto └── Dockerfile ├── phishing-frenzy ├── app │ ├── Dockerfile │ ├── apache2.conf │ ├── database.yml │ └── pf.conf └── docker-compose.yml ├── pylair └── Dockerfile ├── rdp-sec-check └── Dockerfile ├── recon-ng └── Dockerfile ├── sniffair └── Dockerfile ├── testssl.sh └── Dockerfile └── winshock-test └── Dockerfile /aircrack-ng/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/aircrack-ng/Dockerfile -------------------------------------------------------------------------------- /android-sdk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/android-sdk/Dockerfile -------------------------------------------------------------------------------- /cobaltstrike/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/cobaltstrike/Dockerfile -------------------------------------------------------------------------------- /drone-burp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/drone-burp/Dockerfile -------------------------------------------------------------------------------- /drone-inspy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/drone-inspy/Dockerfile -------------------------------------------------------------------------------- /drone-nessus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/drone-nessus/Dockerfile -------------------------------------------------------------------------------- /drone-nmap/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/drone-nmap/Dockerfile -------------------------------------------------------------------------------- /inspy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/inspy/Dockerfile -------------------------------------------------------------------------------- /keybase/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/keybase/Dockerfile -------------------------------------------------------------------------------- /kismet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/kismet/Dockerfile -------------------------------------------------------------------------------- /lair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/README.md -------------------------------------------------------------------------------- /lair/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/api/Dockerfile -------------------------------------------------------------------------------- /lair/api/plugins/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lair/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/app/Dockerfile -------------------------------------------------------------------------------- /lair/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/app/package.json -------------------------------------------------------------------------------- /lair/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/docker-compose.yml -------------------------------------------------------------------------------- /lair/proxy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/proxy/Caddyfile -------------------------------------------------------------------------------- /lair/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/proxy/Dockerfile -------------------------------------------------------------------------------- /lair/proxy/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/proxy/cert.pem -------------------------------------------------------------------------------- /lair/proxy/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/lair/proxy/key.pem -------------------------------------------------------------------------------- /metasploit/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/metasploit/app/Dockerfile -------------------------------------------------------------------------------- /metasploit/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/metasploit/db/Dockerfile -------------------------------------------------------------------------------- /metasploit/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/metasploit/docker-compose.yml -------------------------------------------------------------------------------- /nessus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/nessus/Dockerfile -------------------------------------------------------------------------------- /nikto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/nikto/Dockerfile -------------------------------------------------------------------------------- /phishing-frenzy/app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/phishing-frenzy/app/Dockerfile -------------------------------------------------------------------------------- /phishing-frenzy/app/apache2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/phishing-frenzy/app/apache2.conf -------------------------------------------------------------------------------- /phishing-frenzy/app/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/phishing-frenzy/app/database.yml -------------------------------------------------------------------------------- /phishing-frenzy/app/pf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/phishing-frenzy/app/pf.conf -------------------------------------------------------------------------------- /phishing-frenzy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/phishing-frenzy/docker-compose.yml -------------------------------------------------------------------------------- /pylair/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/pylair/Dockerfile -------------------------------------------------------------------------------- /rdp-sec-check/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/rdp-sec-check/Dockerfile -------------------------------------------------------------------------------- /recon-ng/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/recon-ng/Dockerfile -------------------------------------------------------------------------------- /sniffair/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/sniffair/Dockerfile -------------------------------------------------------------------------------- /testssl.sh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/testssl.sh/Dockerfile -------------------------------------------------------------------------------- /winshock-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesbcook/dockerfiles/HEAD/winshock-test/Dockerfile --------------------------------------------------------------------------------