Netscaler Cookie Decoder

Decode the Netscaler Cookie

Что такое Netscaler Cookie Decoder?

Netscaler Cookie Decoder - это расширение Chrome, разработанное https://joaofelipe.net, и его основная функция - "Decode the Netscaler Cookie".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Netscaler Cookie Decoder

Скачайте файлы расширений 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"
    ]
}