Fading Coder

One Final Commit for the Last Sprint

Server-Side Template Injection in Flask Applications

Environment Setup 1. Navigate to the flask/ssti directory within vulhub 2. Build the target environment docker-compose build 3. Launch the vulnerable application docker-compose up -d 4. Clean up the environment when finished docker-compose down Vulnerability Reproduction 1. Access the web interface...

Web Security Challenges: PHP, SSTI, SQL Injection, and More

PHP Vulnerability Exploitation The target page reveals no obvious clues through packet capture or backend scanning. A search for write-ups (WP) indicates the presence of .phps files. Accessing index.phps displays source code: <?php if("admin" === $_GET[id]) { echo("<p>not all...

Comprehensive Guide to SSTI Explained with Payload Bypass Techniques

Introduction Server-Side Template Injection (SSTI) is a vulnerability in web applications where user input is improper handled within the template engine and executed on the server. This exploit can result in comand execution, arbitrary code execution, or access to sensitive data. Below is a detaile...