├── .gitignore ├── LICENSES.txt ├── README.md ├── collabCTF ├── __init__.py ├── context_processors.py ├── local_settings.template.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── competition ├── __init__.py ├── admin.py ├── ajax.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── static │ ├── clocks │ │ ├── blue.png │ │ ├── green.png │ │ ├── orange.png │ │ └── pink.png │ ├── css │ │ ├── foundation.min.css │ │ ├── normalize.css │ │ └── style.css │ ├── dashboard.css │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── holder.js │ ├── images │ │ ├── doge2.png │ │ └── fire doge.png │ └── js │ │ ├── ctf_overview.js │ │ ├── ctftools.js │ │ ├── lib │ │ ├── fastclick.js │ │ ├── foundation.min.js │ │ ├── jquery.cookie.js │ │ ├── modernizr.js │ │ └── placeholder.js │ │ ├── metr.js │ │ └── site.js ├── templates │ ├── 404.html │ ├── 40x-50x.html │ ├── 500.html │ ├── base.html │ ├── breadcrumbs.html │ ├── ctf │ │ ├── add.html │ │ ├── challenge │ │ │ ├── add.html │ │ │ ├── deleted.html │ │ │ ├── files │ │ │ │ └── add.html │ │ │ ├── overview.html │ │ │ └── update.html │ │ ├── overview.html │ │ ├── removed.html │ │ └── update.html │ ├── index.html │ ├── login.html │ ├── profile.html │ ├── register.html │ ├── registration_locked.html │ ├── reports.html │ ├── settings.html │ ├── sidebar.html │ └── tools.html ├── tests.py └── views.py ├── manage.py ├── requirements.txt └── tools ├── __init__.py ├── ajax.py ├── crypto.py ├── forms.py ├── misc.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/LICENSES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/README.md -------------------------------------------------------------------------------- /collabCTF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collabCTF/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/collabCTF/context_processors.py -------------------------------------------------------------------------------- /collabCTF/local_settings.template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/collabCTF/local_settings.template.py -------------------------------------------------------------------------------- /collabCTF/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/collabCTF/settings.py -------------------------------------------------------------------------------- /collabCTF/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/collabCTF/urls.py -------------------------------------------------------------------------------- /collabCTF/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/collabCTF/views.py -------------------------------------------------------------------------------- /collabCTF/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/collabCTF/wsgi.py -------------------------------------------------------------------------------- /competition/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /competition/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/admin.py -------------------------------------------------------------------------------- /competition/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/ajax.py -------------------------------------------------------------------------------- /competition/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/forms.py -------------------------------------------------------------------------------- /competition/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/migrations/0001_initial.py -------------------------------------------------------------------------------- /competition/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /competition/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/models.py -------------------------------------------------------------------------------- /competition/static/clocks/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/clocks/blue.png -------------------------------------------------------------------------------- /competition/static/clocks/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/clocks/green.png -------------------------------------------------------------------------------- /competition/static/clocks/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/clocks/orange.png -------------------------------------------------------------------------------- /competition/static/clocks/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/clocks/pink.png -------------------------------------------------------------------------------- /competition/static/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/css/foundation.min.css -------------------------------------------------------------------------------- /competition/static/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/css/normalize.css -------------------------------------------------------------------------------- /competition/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/css/style.css -------------------------------------------------------------------------------- /competition/static/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/dashboard.css -------------------------------------------------------------------------------- /competition/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/favicon.ico -------------------------------------------------------------------------------- /competition/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /competition/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /competition/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /competition/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /competition/static/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/holder.js -------------------------------------------------------------------------------- /competition/static/images/doge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/images/doge2.png -------------------------------------------------------------------------------- /competition/static/images/fire doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/images/fire doge.png -------------------------------------------------------------------------------- /competition/static/js/ctf_overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/ctf_overview.js -------------------------------------------------------------------------------- /competition/static/js/ctftools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/ctftools.js -------------------------------------------------------------------------------- /competition/static/js/lib/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/lib/fastclick.js -------------------------------------------------------------------------------- /competition/static/js/lib/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/lib/foundation.min.js -------------------------------------------------------------------------------- /competition/static/js/lib/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/lib/jquery.cookie.js -------------------------------------------------------------------------------- /competition/static/js/lib/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/lib/modernizr.js -------------------------------------------------------------------------------- /competition/static/js/lib/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/lib/placeholder.js -------------------------------------------------------------------------------- /competition/static/js/metr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/metr.js -------------------------------------------------------------------------------- /competition/static/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/static/js/site.js -------------------------------------------------------------------------------- /competition/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/404.html -------------------------------------------------------------------------------- /competition/templates/40x-50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/40x-50x.html -------------------------------------------------------------------------------- /competition/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/500.html -------------------------------------------------------------------------------- /competition/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/base.html -------------------------------------------------------------------------------- /competition/templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/breadcrumbs.html -------------------------------------------------------------------------------- /competition/templates/ctf/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/add.html -------------------------------------------------------------------------------- /competition/templates/ctf/challenge/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/challenge/add.html -------------------------------------------------------------------------------- /competition/templates/ctf/challenge/deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/challenge/deleted.html -------------------------------------------------------------------------------- /competition/templates/ctf/challenge/files/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/challenge/files/add.html -------------------------------------------------------------------------------- /competition/templates/ctf/challenge/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/challenge/overview.html -------------------------------------------------------------------------------- /competition/templates/ctf/challenge/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/challenge/update.html -------------------------------------------------------------------------------- /competition/templates/ctf/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/overview.html -------------------------------------------------------------------------------- /competition/templates/ctf/removed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/removed.html -------------------------------------------------------------------------------- /competition/templates/ctf/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/ctf/update.html -------------------------------------------------------------------------------- /competition/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/index.html -------------------------------------------------------------------------------- /competition/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/login.html -------------------------------------------------------------------------------- /competition/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/profile.html -------------------------------------------------------------------------------- /competition/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/register.html -------------------------------------------------------------------------------- /competition/templates/registration_locked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/registration_locked.html -------------------------------------------------------------------------------- /competition/templates/reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/reports.html -------------------------------------------------------------------------------- /competition/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/settings.html -------------------------------------------------------------------------------- /competition/templates/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/sidebar.html -------------------------------------------------------------------------------- /competition/templates/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/templates/tools.html -------------------------------------------------------------------------------- /competition/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/tests.py -------------------------------------------------------------------------------- /competition/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/competition/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/tools/ajax.py -------------------------------------------------------------------------------- /tools/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/tools/crypto.py -------------------------------------------------------------------------------- /tools/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/tools/forms.py -------------------------------------------------------------------------------- /tools/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/tools/misc.py -------------------------------------------------------------------------------- /tools/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HackUCF/collabCTF/HEAD/tools/views.py --------------------------------------------------------------------------------