BIGIP Cookie Decoder

Decode BIGIP Cookie

Apa itu BIGIP Cookie Decoder?

BIGIP Cookie Decoder adalah ekstensi Chrome yang dikembangkan oleh https://joaofelipe.net, dan fitur utamanya adalah "Decode BIGIP Cookie".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi BIGIP Cookie Decoder

Unduh file ekstensi BIGIP Cookie Decoder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
URL Resmi https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Deskripsi Decode BIGIP Cookie
Ukuran File 39.99 KB
Jumlah Instalasi 3,833
Versi Saat Ini 1.3
Terakhir Diperbarui 2022-05-08
Tanggal Publikasi 2014-09-19
Penilaian 4.43/5 Total 7 Penilaian
Pengembang https://joaofelipe.net
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://joaofelipe.net
Bahasa yang Didukung 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"
    ]
}