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