Netscaler Cookie Decoder

Decode the Netscaler Cookie

Wat is Netscaler Cookie Decoder?

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

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Netscaler Cookie Decoder

Download Netscaler 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

                        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.                    

Basisinformatie over de Extensie

Naam Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
Officiële URL https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
Beschrijving Decode the Netscaler Cookie
Bestandsgrootte 98.09 KB
Aantal Installaties 231
Huidige Versie 1.0
Laatst Bijgewerkt 2021-04-21
Publicatiedatum 2021-04-10
Ontwikkelaar https://joaofelipe.net
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/joaofelipes/netscaler-cookie-decoder/issues
Ondersteunde Talen 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"
    ]
}