BIGIP Cookie Decoder

Decode BIGIP Cookie

什麼是BIGIP Cookie Decoder?

BIGIP Cookie Decoder是由https://joaofelipe.net開發的Chrome擴展程式,該擴展的主要功能是“Decode BIGIP Cookie”。

擴展截圖

screenshot
screenshot

下載BIGIP Cookie Decoder擴展crx文件

下載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
官方網址 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"
    ]
}