Netscaler Cookie Decoder

Decode the Netscaler Cookie

Was ist Netscaler Cookie Decoder?

Netscaler Cookie Decoder ist eine Chrome-Erweiterung, die von https://joaofelipe.net entwickelt wurde, und ihr Hauptmerkmal ist "Decode the Netscaler Cookie".

Erweiterungsscreenshots

screenshot
screenshot

Netscaler Cookie Decoder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Netscaler Cookie Decoder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Netscaler Cookie Decoder Netscaler Cookie Decoder
ID iggaenbokihbfaggapmcifgmdmkdcjon
Offizielle URL https://chromewebstore.google.com/detail/netscaler-cookie-decoder/iggaenbokihbfaggapmcifgmdmkdcjon
Beschreibung Decode the Netscaler Cookie
Dateigröße 98.09 KB
Installationsanzahl 231
Aktuelle Version 1.0
Letztes Update 2021-04-21
Veröffentlichungsdatum 2021-04-10
Entwickler https://joaofelipe.net
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/joaofelipes/netscaler-cookie-decoder/issues
Unterstützte Sprachen 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"
    ]
}