├── LICENSE ├── README.md └── authentication ├── authentication-bypass ├── Dockerfile ├── app │ ├── app.py │ └── templates │ │ └── index.html ├── requirements.txt └── run.sh ├── brute-force ├── credential-stuffing │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── templates │ │ │ └── index.html │ ├── requirements.txt │ └── run.sh ├── dictionary-attack │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── templates │ │ │ └── index.html │ ├── requirements.txt │ └── run.sh ├── hybrid-brute-force │ ├── Dockerfile │ ├── app │ │ ├── app.py │ │ └── templates │ │ │ └── index.html │ ├── requirements.txt │ └── run.sh └── password-spraying │ ├── Dockerfile │ ├── app │ ├── app1.py │ ├── app2.py │ ├── app3.py │ └── templates │ │ └── index.html │ ├── requirements.txt │ ├── run.sh │ └── supervisord.conf ├── captcha-bypass ├── Dockerfile ├── app │ ├── Ubuntu-C.ttf │ ├── app.py │ └── templates │ │ └── index.html ├── requirements.txt └── run.sh ├── default-credential ├── Dockerfile ├── app │ ├── app.py │ └── templates │ │ └── index.html ├── requirements.txt └── run.sh └── multi-factor-authentication-bypass ├── Dockerfile ├── app ├── Ubuntu-C.ttf ├── app.py ├── fake_smtp_server.py ├── templates │ └── index.html └── webmail.py ├── requirements.txt └── run.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/README.md -------------------------------------------------------------------------------- /authentication/authentication-bypass/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/authentication-bypass/Dockerfile -------------------------------------------------------------------------------- /authentication/authentication-bypass/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/authentication-bypass/app/app.py -------------------------------------------------------------------------------- /authentication/authentication-bypass/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/authentication-bypass/app/templates/index.html -------------------------------------------------------------------------------- /authentication/authentication-bypass/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/authentication-bypass/requirements.txt -------------------------------------------------------------------------------- /authentication/authentication-bypass/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/authentication-bypass/run.sh -------------------------------------------------------------------------------- /authentication/brute-force/credential-stuffing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/credential-stuffing/Dockerfile -------------------------------------------------------------------------------- /authentication/brute-force/credential-stuffing/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/credential-stuffing/app/app.py -------------------------------------------------------------------------------- /authentication/brute-force/credential-stuffing/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/credential-stuffing/app/templates/index.html -------------------------------------------------------------------------------- /authentication/brute-force/credential-stuffing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/credential-stuffing/requirements.txt -------------------------------------------------------------------------------- /authentication/brute-force/credential-stuffing/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/credential-stuffing/run.sh -------------------------------------------------------------------------------- /authentication/brute-force/dictionary-attack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/dictionary-attack/Dockerfile -------------------------------------------------------------------------------- /authentication/brute-force/dictionary-attack/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/dictionary-attack/app/app.py -------------------------------------------------------------------------------- /authentication/brute-force/dictionary-attack/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/dictionary-attack/app/templates/index.html -------------------------------------------------------------------------------- /authentication/brute-force/dictionary-attack/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/dictionary-attack/requirements.txt -------------------------------------------------------------------------------- /authentication/brute-force/dictionary-attack/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/dictionary-attack/run.sh -------------------------------------------------------------------------------- /authentication/brute-force/hybrid-brute-force/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/hybrid-brute-force/Dockerfile -------------------------------------------------------------------------------- /authentication/brute-force/hybrid-brute-force/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/hybrid-brute-force/app/app.py -------------------------------------------------------------------------------- /authentication/brute-force/hybrid-brute-force/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/hybrid-brute-force/app/templates/index.html -------------------------------------------------------------------------------- /authentication/brute-force/hybrid-brute-force/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/hybrid-brute-force/requirements.txt -------------------------------------------------------------------------------- /authentication/brute-force/hybrid-brute-force/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/hybrid-brute-force/run.sh -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/Dockerfile -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/app/app1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/app/app1.py -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/app/app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/app/app2.py -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/app/app3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/app/app3.py -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/app/templates/index.html -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/requirements.txt -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/run.sh -------------------------------------------------------------------------------- /authentication/brute-force/password-spraying/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/brute-force/password-spraying/supervisord.conf -------------------------------------------------------------------------------- /authentication/captcha-bypass/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/captcha-bypass/Dockerfile -------------------------------------------------------------------------------- /authentication/captcha-bypass/app/Ubuntu-C.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/captcha-bypass/app/Ubuntu-C.ttf -------------------------------------------------------------------------------- /authentication/captcha-bypass/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/captcha-bypass/app/app.py -------------------------------------------------------------------------------- /authentication/captcha-bypass/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/captcha-bypass/app/templates/index.html -------------------------------------------------------------------------------- /authentication/captcha-bypass/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/captcha-bypass/requirements.txt -------------------------------------------------------------------------------- /authentication/captcha-bypass/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/captcha-bypass/run.sh -------------------------------------------------------------------------------- /authentication/default-credential/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/default-credential/Dockerfile -------------------------------------------------------------------------------- /authentication/default-credential/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/default-credential/app/app.py -------------------------------------------------------------------------------- /authentication/default-credential/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/default-credential/app/templates/index.html -------------------------------------------------------------------------------- /authentication/default-credential/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/default-credential/requirements.txt -------------------------------------------------------------------------------- /authentication/default-credential/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/default-credential/run.sh -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/Dockerfile -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/app/Ubuntu-C.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/app/Ubuntu-C.ttf -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/app/app.py -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/app/fake_smtp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/app/fake_smtp_server.py -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/app/templates/index.html -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/app/webmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/app/webmail.py -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/requirements.txt -------------------------------------------------------------------------------- /authentication/multi-factor-authentication-bypass/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeeqbox/pentest-labs/HEAD/authentication/multi-factor-authentication-bypass/run.sh --------------------------------------------------------------------------------