├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── chals.py ├── requirements.txt ├── run.py ├── runtime.txt └── templates ├── base.html ├── challenge.html ├── challenges.html ├── index.html ├── login.html ├── register.html └── scoreboard.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python run.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/app.py -------------------------------------------------------------------------------- /chals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/chals.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/run.py -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.16 2 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/challenge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/challenge.html -------------------------------------------------------------------------------- /templates/challenges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/challenges.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/scoreboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreafioraldi/motherfucking-ctf/HEAD/templates/scoreboard.html --------------------------------------------------------------------------------