BIGIP Cookie Decoder

Decode BIGIP Cookie

BIGIP Cookie Decoder là gì?

BIGIP Cookie Decoder là một tiện ích mở rộng Chrome được phát triển bởi https://joaofelipe.net, và tính năng chính của nó là "Decode BIGIP Cookie".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BIGIP Cookie Decoder

Tải xuống các tệp mở rộng BIGIP Cookie Decoder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
URL Chính Thức https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Mô tả Decode BIGIP Cookie
Kích Thước Tệp 39.99 KB
Số Lần Cài Đặt 3,833
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2022-05-08
Ngày Phát Hành 2014-09-19
Đánh Giá 4.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://joaofelipe.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://joaofelipe.net
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}