Netscaler Cookie Decoder

Decode the Netscaler Cookie

Netscaler Cookie Decoder là gì?

Netscaler Cookie Decoder là một tiện ích mở rộng Chrome được phát triển bởi https://joaofelipe.net, và tính năng chính của nó là "Decode the Netscaler Cookie".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netscaler Cookie Decoder

Tải xuống các tệp mở rộng Netscaler Cookie Decoder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
URL Chính Thức https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
Mô tả Decode the Netscaler Cookie
Kích Thước Tệp 98.09 KB
Số Lần Cài Đặt 231
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-04-21
Ngày Phát Hành 2021-04-10
Nhà Phát Triển https://joaofelipe.net
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/joaofelipes/netscaler-cookie-decoder/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}