Oct 18, 2024 · 2 min read · Lab Setup Create a folder for the challenge. mkdir ssti_ctf2_challenge cd ssti_ctf2_challenge Set up the environment python3 -m venv venv source venv/bin/activate pip install Flask Create app.py from flask import Flask, request, rend...
Join discussion
Oct 3, 2024 · 5 min read · Server-Side Template Injection (SSTI) is a significant vulnerability in modern web applications, enabling attackers to inject malicious code into server-side templates. This flaw arises when user inputs are improperly handled and directly embedded in...
Join discussion