SSTI CTF Challenge 1
Lab Setup
Create a folder for the challenge.
mkdir ssti_ctf1_challenge
cd ssti_ctf1_challenge
Set up the environment
python3 -m venv venv
source venv/bin/activate
pip install Flask
Create app.py
from flask import Flask, request, render_te...
abisec.hashnode.dev2 min read