BIGIP Cookie Decoder

Decode BIGIP Cookie

What is BIGIP Cookie Decoder?

BIGIP Cookie Decoder is a Chrome extension developed by https://joaofelipe.net, and its main feature is "Decode BIGIP Cookie".

Extension Screenshots

screenshot
screenshot

Download BIGIP Cookie Decoder Extension CRX File

Download BIGIP Cookie Decoder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The F5 BIG-IP load balancer uses an encoded cookie to maintain stateful connections from the client to the server. These cookies are automatically sent in every request to the domain that set them. This allows a simple way to track each client’s server association for load balancing control.

This extension reverse the F5 algorithm used to encode the data, and exposes the IP address and TCP port of the host that is actually handling your connection. 

It was made to help administrators in trobleshooting situations. 

Note that non encrypted cookies are considered a security issue, and this extension will not work if your load balancer was configured to use the non reversible crypto.                    

Extension Basic Information

Name BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
Official URL https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Description Decode BIGIP Cookie
File Size 39.99 KB
Installation Count 3,833
Current Version 1.3
Last Updated 2022-05-08
Publish Date 2014-09-19
Rating 4.43/5 Total 7 Ratings
Developer https://joaofelipe.net
Email [email protected]
Payment Type free
Extension Website https://joaofelipe.net
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BIGIP Cookie Decoder",
    "description": "Decode BIGIP Cookie",
    "version": "1.3",
    "permissions": [
        "cookies",
        "",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "content_scripts": [
            {
                "css": [
                    "style.css"
                ],
                "js": [
                    "jquery.min.js"
                ]
            }
        ]
    },
    "web_accessible_resources": [
        "http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.1.1\/jquery.min.js"
    ]
}