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"
    ]
}