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
官方網址 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"
    ]
}