Abishek Kafledevops.abisec.xyz·Oct 18, 2024SSTI Code Review Lab 2Lab 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...DiscussCode ReviewWeb Development
Atharv Patilatharvpatil.hashnode.dev·Oct 3, 2024Understanding Server-Side Template Injection (SSTI)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...Discuss·1 like·38 readsServer-Side Template Injection