A CTF platform used in IceCTF 2016
 
 
 
 
Go to file
Fox Wilson fb2fc7b309 admin ticket view sort correctly 2016-05-28 18:39:08 -04:00
docs some docs 2015-11-28 22:11:12 -05:00
modules admin ticket view sort correctly 2016-05-28 18:39:08 -04:00
static add sortable 2016-05-23 14:30:56 -04:00
templates rm irc mention 2016-05-27 22:58:41 -04:00
utils me too thanks 2016-05-28 02:35:58 -04:00
.gitignore ignore venv 2016-03-22 15:50:27 -04:00
2 fix 2016-05-26 23:16:08 -04:00
LICENSE update license 2016-02-03 17:27:55 -05:00
README.md license, contributing guidelines 2015-11-30 23:22:31 -05:00
app.py fix 2016-05-28 00:25:50 -04:00
config.py scoreboard fix 2016-05-26 21:59:35 -04:00
ctferror.py breakthrough points, challenge solves 2015-12-03 18:18:00 -05:00
ctftool Use random.SystemRandom() for cryptographically secure RNG (#24) 2016-05-26 22:59:49 -04:00
database.py do the thing 2016-05-04 21:18:52 -04:00
regenerate_score.py really fix 2016-05-26 23:41:01 -04:00
requirements.txt add admin 2fa 2016-05-04 21:30:29 -04:00
yeshello.py fix 2016-05-26 23:16:08 -04:00

README.md

Flagbase

This is the platform for TJCTF. It's (what I think is) the best of the MITRE, CTFd, and picoCTF platforms rolled up into a Flask application.

I'm bad at naming things.

Installation

You're going to want to edit config.py. The variable names should be fairly self-explanatory.

You're going to want to create a file called secrets. It will look like this:

mailgun_url: https://api.mailgun.net/v3/tjctf.org
mailgun_key: key-asdflkjasdhflkjsdahflkhsdaklfjhasd
recaptcha_key: asdlkfjhasdlkjfhlsdakjfh
recaptcha_secret: sdakjfhsdalkfjhsdalkfjh
key: this can be anything you want, it is your flask secret_key

You should edit line 2 of database.py, unless you want to use SQLite. This uses Peewee, so you can use any Peewee-supported database.

You can create some problem YAML files that look like this:

name: Problem Name
author: ME!
category: Binary
description: binary binary binary binary. i love binary
points: 250
flags: "flag{whatever}"

Then add them with ./ctftool add-challenge problem.yml and it'll get put in the database.

Run python app.py and you have a server running. You probably want to deploy it with gunicorn or similar, long-term.

ctftool

You can do some really fancy stuff with ctftool. If you have a directory structure like this:

  • ctf-platform
  • ctf-problems
    • problem1
      • problem.yml
      • static.yml
    • problem2
      • problem.yml
      • static.yml
    • problem3
      • problem.yml
    • problem4

You can run ./ctftool scan ../ctf-problems/ and get a fully populated database with information from all the problem.yml files, and automatically generated static file names, and automatic substitutions for static file links in problem.yml. More documentation on this to come soon.

Contributing

Flagbase is under really heavy development right now. That means

  • Absolutely do submit issues: bugs and feature requests are awesome.

  • Don't submit a pull request for:

    • a major feature addition
    • database model changes
  • Do submit pull requests for:

    • documentation addition/edits
    • minor bugfixes
    • small changes to existing features

If you're touching database.py or config.py, you're probably doing it wrong.

If you decide to ignore my guidelines, write detailed documentation on what your pull request consists of, what problems it fixes, how it works, and what issues it could bring up.

Of course, you are more than welcome to fork the repository.