BIGIP Cookie Decoder

Decode BIGIP Cookie

Qu'est-ce que BIGIP Cookie Decoder ?

BIGIP Cookie Decoder est une extension Chrome développée par https://joaofelipe.net, et sa fonction principale est "Decode BIGIP Cookie".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension BIGIP Cookie Decoder

Téléchargez les fichiers d'extension BIGIP Cookie Decoder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
URL Officiel https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Description Decode BIGIP Cookie
Taille du Fichier 39.99 KB
Nombre d'Installations 3,833
Version Actuelle 1.3
Dernière Mise à Jour 2022-05-08
Date de Publication 2014-09-19
Évaluation 4.43/5 Total 7 Évaluations
Développeur https://joaofelipe.net
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://joaofelipe.net
Langues Prises en Charge 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"
    ]
}