Flask
Last updated
Last updated
Probably if you are playing a CTF a Flask application will be related to SSTI.
Default cookie session name is session
. Decode cookie online here or manually by getting the first part of the cookie until the first point and Base64 decode it:
echo "ImhlbGxvIg" | base64 -d
The cookie is signed using a password.
Command line tool to fetch, decode, brute-force and craft session cookies of a Flask application by guessing secret keys.