From d3930c9a814a1af84482cc960eeeba58cc60cba8 Mon Sep 17 00:00:00 2001 From: daniellozier Date: Tue, 17 Mar 2026 16:30:32 -0400 Subject: [PATCH] Update flask.md - Fix typos --- src/network-services-pentesting/pentesting-web/flask.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network-services-pentesting/pentesting-web/flask.md b/src/network-services-pentesting/pentesting-web/flask.md index 94842c1b33c..f88880c5424 100644 --- a/src/network-services-pentesting/pentesting-web/flask.md +++ b/src/network-services-pentesting/pentesting-web/flask.md @@ -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