WebDevAuthn

Debug FIDO2 requests and responses

WebDevAuthn क्या है?

WebDevAuthn DinoDevs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debug FIDO2 requests and responses"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WebDevAuthn एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/
सहायता पृष्ठ URL 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
}