BIGIP Cookie Decoder

Decode BIGIP Cookie

Was ist BIGIP Cookie Decoder?

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

Erweiterungsscreenshots

screenshot
screenshot

BIGIP Cookie Decoder-Erweiterungs-CRX-Datei herunterladen

Laden Sie BIGIP 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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
Offizielle URL https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Beschreibung Decode BIGIP Cookie
Dateigröße 39.99 KB
Installationsanzahl 3,833
Aktuelle Version 1.3
Letztes Update 2022-05-08
Veröffentlichungsdatum 2014-09-19
Bewertung 4.43/5 Insgesamt 7 Bewertungen
Entwickler https://joaofelipe.net
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://joaofelipe.net
Unterstützte Sprachen 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"
    ]
}