Netscaler Cookie Decoder

Decode the Netscaler Cookie

O que é Netscaler Cookie Decoder?

Netscaler Cookie Decoder é uma extensão do Chrome desenvolvida por https://joaofelipe.net, e sua principal característica é "Decode the Netscaler Cookie".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Netscaler Cookie Decoder

Baixe arquivos de extensão Netscaler Cookie Decoder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
URL Oficial https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
Descrição Decode the Netscaler Cookie
Tamanho do Arquivo 98.09 KB
Contagem de Instalações 231
Versão Atual 1.0
Última Atualização 2021-04-21
Data de Publicação 2021-04-10
Desenvolvedor https://joaofelipe.net
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/joaofelipes/netscaler-cookie-decoder/issues
Idiomas Suportados 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"
    ]
}