Netscaler Cookie Decoder

Decode the Netscaler Cookie

什么是Netscaler Cookie Decoder?

Netscaler Cookie Decoder是由https://joaofelipe.net开发的Chrome扩展程序,该扩展的主要功能是“Decode the Netscaler Cookie”。

扩展截图

screenshot
screenshot

下载Netscaler Cookie Decoder扩展crx文件

下载Netscaler Cookie Decoder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
官方URL https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
简介 Decode the Netscaler Cookie
文件大小 98.09 KB
安装次数 231
当前版本 1.0
更新时间 2021-04-21
上架时间 2021-04-10
开发者 https://joaofelipe.net
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/joaofelipes/netscaler-cookie-decoder/issues
支持的语言 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"
    ]
}