BIGIP Cookie Decoder

Decode BIGIP Cookie

Co je BIGIP Cookie Decoder?

BIGIP Cookie Decoder je rozšíření Chrome vyvinuté https://joaofelipe.net, a jeho hlavní funkcí je „Decode BIGIP Cookie“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření BIGIP Cookie Decoder

Stáhněte si soubory rozšíření BIGIP Cookie Decoder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
Oficiální URL https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Popis Decode BIGIP Cookie
Velikost souboru 39.99 KB
Počet instalací 3,833
Aktuální Verze 1.3
Poslední Aktualizace 2022-05-08
Datum Vydání 2014-09-19
Hodnocení 4.43/5 Celkem 7 Hodnocení
Vývojář https://joaofelipe.net
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://joaofelipe.net
Podporované Jazyky 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"
    ]
}