BIGIP Cookie Decoder

Decode BIGIP Cookie

Τι είναι το BIGIP Cookie Decoder;

Το BIGIP Cookie Decoder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://joaofelipe.net, και η κύρια λειτουργία του είναι "Decode BIGIP Cookie".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης BIGIP Cookie Decoder

Λήψη αρχείων επέκτασης BIGIP Cookie Decoder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The F5 BIG-IP load balancer uses an encoded cookie to maintain stateful connections from the client to the 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 extension reverse the F5 algorithm used to encode the data, and exposes the IP address and TCP port of the host that is actually handling your connection. 

It was made to help administrators in trobleshooting situations. 

Note that non encrypted cookies are considered a security issue, and this extension will not work if your load balancer was configured to use the non reversible crypto.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
Επίσημο URL https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Περιγραφή Decode BIGIP Cookie
Μέγεθος Αρχείου 39.99 KB
Αριθμός Εγκαταστάσεων 3,833
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2022-05-08
Ημερομηνία Δημοσίευσης 2014-09-19
Αξιολόγηση 4.43/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://joaofelipe.net
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://joaofelipe.net
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BIGIP Cookie Decoder",
    "description": "Decode BIGIP Cookie",
    "version": "1.3",
    "permissions": [
        "cookies",
        "",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "content_scripts": [
            {
                "css": [
                    "style.css"
                ],
                "js": [
                    "jquery.min.js"
                ]
            }
        ]
    },
    "web_accessible_resources": [
        "http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.1.1\/jquery.min.js"
    ]
}