Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/network-services-pentesting/pentesting-web/flask.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Default cookie session name is **`session`**.

### Decoder

Online Flask coockies decoder: [https://www.kirsle.net/wizards/flask-session.cgi](https://www.kirsle.net/wizards/flask-session.cgi)
Online Flask cookies 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>
Get the first part of the cookie until the first point and Base64 decode it:

```bash
echo "ImhlbGxvIg" | base64 -d
Expand Down