BIGIP Cookie Decoder

Decode BIGIP Cookie

O que é BIGIP Cookie Decoder?

BIGIP Cookie Decoder é uma extensão do Chrome desenvolvida por https://joaofelipe.net, e sua principal característica é "Decode BIGIP Cookie".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão BIGIP Cookie Decoder

Baixe arquivos de extensão BIGIP Cookie Decoder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome BIGIP Cookie Decoder BIGIP Cookie Decoder
ID fgbahkaekodceioljkpefkclechnccpl
URL Oficial https://chromewebstore.google.com/detail/bigip-cookie-decoder/fgbahkaekodceioljkpefkclechnccpl
Descrição Decode BIGIP Cookie
Tamanho do Arquivo 39.99 KB
Contagem de Instalações 3,833
Versão Atual 1.3
Última Atualização 2022-05-08
Data de Publicação 2014-09-19
Classificação 4.43/5 Total de 7 Avaliações
Desenvolvedor https://joaofelipe.net
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://joaofelipe.net
Idiomas Suportados 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"
    ]
}