### Install Flask Unsign with Wordlist Support Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Install the application with optional wordlist support using pip. ```bash pip3 install flask-unsign[wordlist] ``` -------------------------------- ### Install Flask Unsign Core Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Install only the core functionality of Flask Unsign using pip. ```bash pip3 install flask-unsign ``` -------------------------------- ### Install Flask Unsign for Development Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Install the tool in editable mode with test dependencies for development purposes. ```bash pip3 install -e .[test] ``` -------------------------------- ### Display Flask Unsign Help Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Call flask-unsign without arguments to view all available options. ```bash flask-unsign ``` -------------------------------- ### Decode Session Cookie from Server Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Automatically fetch and decode a session cookie from a specified server URL. Ensure the URL returns a session. ```bash flask-unsign --decode --server 'https://www.example.com/login' ``` -------------------------------- ### Sign Custom Flask Session Data Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Craft a new session cookie by providing custom data and the server's secret key. ```bash flask-unsign --sign --cookie "{'logged_in': True}" --secret 'CHANGEME' ``` -------------------------------- ### Brute Force Flask Secret Key Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Attempt to brute-force the secret key used to sign a session cookie. Falls back to a default wordlist if none is specified. ```bash flask-unsign --unsign --cookie < cookie.txt ``` -------------------------------- ### Decode Flask Session Cookie Source: https://github.com/paradoxis/flask-unsign/blob/master/README.md Decode a given session cookie to view its contents. The default session name 'session' is assumed. ```bash flask-unsign --decode --cookie 'eyJsb2dnZWRfaW4iOmZhbHNlfQ.XDuWxQ.E2Pyb6x3w-NODuflHoGnZOEpbH8' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.