WebDevAuthn

Debug FIDO2 requests and responses

ما هو WebDevAuthn؟

WebDevAuthn هو إضافة Chrome تم تطويرها بواسطة DinoDevs، والميزة الرئيسية لها هي "Debug FIDO2 requests and responses".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة WebDevAuthn

قم بتنزيل ملفات الامتداد WebDevAuthn بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Analyse FIDO2/WebAuthn requests and responses

Analyser Features:
- Capture WebAuthn requests
- Analyse WebAuthn options (show info, warnings & errors)
- Unpack/Decode WebAuthn authenticator responses
- Virtual Authenticator Device (for custom responses)

Virtual Authenticator Device
- OS independent
- Supports packed attestation
- Supports wrapped keys to credentials id
- Access to the private key of the generated credentials
- Testing mode to assess implementations
- Multiple supported algorithms                    

معلومات أساسية عن التمديد

الاسم WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
عنوان URL الرسمي https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
الوصف Debug FIDO2 requests and responses
حجم الملف 18.55 KB
عدد التثبيتات 370
النسخة الحالية 0.5
آخر تحديث 2022-03-07
تاريخ النشر 2022-03-07
المطور DinoDevs
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://gramthanos.github.io/WebDevAuthn/
عنوان صفحة المساعدة https://github.com/GramThanos/WebDevAuthn/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebDevAuthn",
    "description": "Debug FIDO2 requests and responses",
    "author": "Athanasios Vasileios Grammatopoulos",
    "version": "0.5",
    "icons": {
        "19": "icons\/icon.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "webauthn-dev.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "extension_ids": []
        }
    ],
    "manifest_version": 3
}