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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}