BIGIP Cookie Decoder

Decode BIGIP Cookie

Wat is BIGIP Cookie Decoder?

BIGIP Cookie Decoder is een Chrome-extensie ontwikkeld door https://joaofelipe.net, en de belangrijkste functie is "Decode BIGIP Cookie".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie BIGIP Cookie Decoder

Download BIGIP Cookie Decoder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
Officiële URL https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Beschrijving Decode BIGIP Cookie
Bestandsgrootte 39.99 KB
Aantal Installaties 3,833
Huidige Versie 1.3
Laatst Bijgewerkt 2022-05-08
Publicatiedatum 2014-09-19
Beoordeling 4.43/5 Totaal 7 Beoordelingen
Ontwikkelaar https://joaofelipe.net
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://joaofelipe.net
Ondersteunde Talen 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"
    ]
}