Hosted Challenge Deployment
Managing challenges for CTFs can be an ordeal.
Our hosted challenge platform makes it easy to automatically deploy and manage challenges with technologies you're already familiar with!
# app.py from flask import Flask app = Flask(__name__) @app.route("/") def flag(): return "<p>flag{that_was_easy!}</p>"
FROM python:3 RUN pip install flask COPY app.py . EXPOSE 5000 CMD flask run --host=0.0.0.0