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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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