Netscaler Cookie Decoder

Decode the Netscaler Cookie

Qu'est-ce que Netscaler Cookie Decoder ?

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

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Netscaler 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

                        Citrix Netscaler Load Balancer uses an encoded cookie to maintain stateful connections from client to 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 chrome extension reverse the Netscaler algorithm used to encode the data, and exposes the IP address and TCP port of the host that is actually handling your connection. It is based on the work of catalyst256 and is intend to to help developers and administrators in trobleshooting situations.                    

Informations de Base sur l'Extension

Nom Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
URL Officiel https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
Description Decode the Netscaler Cookie
Taille du Fichier 98.09 KB
Nombre d'Installations 231
Version Actuelle 1.0
Dernière Mise à Jour 2021-04-21
Date de Publication 2021-04-10
Développeur https://joaofelipe.net
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/joaofelipes/netscaler-cookie-decoder/issues
Langues Prises en Charge en-US
manifest.json
{
    "browser_action": {
        "content_scripts": [
            {
                "css": [
                    "style.css"
                ],
                "js": [
                    "jquery.min.js"
                ]
            }
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "description": "Decode the Netscaler Cookie",
    "manifest_version": 2,
    "name": "Netscaler Cookie Decoder",
    "permissions": [
        "cookies",
        "",
        "tabs"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "web_accessible_resources": [
        "http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.1.1\/jquery.min.js"
    ]
}