Exports are an archive of your CTF in its current state. They can be re-imported into other CTFd instances or used by scripts and third parties to calculate statistics.

To download an export click the button below.

You can import saved CTFd exports by uploading them below. This will completely wipe your existing CTFd instance and all your data will be replaced by the imported data. You should only import data that you trust!

{% with form = Forms.config.ExportCSVForm() %}
{{ form.table.label }} {{ form.table(class="form-control custom-select") }}
{% endwith %}
{% with form = Forms.config.ImportCSVForm() %}
{{ form.csv_type.label }} {{ form.csv_type(class="form-control custom-select", id="import-csv-type") }} {{ form.csv_type.description }}
{{ form.csv_file.label }} {{ form.csv_file(class="form-control-file", id="import-csv-file", accept=".csv") }} {{ form.csv_file.description }}
{{ form.nonce() }}
{% endwith %}