WebDevAuthn

Debug FIDO2 requests and responses

Hvad er WebDevAuthn?

WebDevAuthn er en Chrome-udvidelse udviklet af DinoDevs, og dens hovedfunktion er "Debug FIDO2 requests and responses".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download WebDevAuthn-udvidelses-CRX-fil

Download WebDevAuthn-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
Officiel URL https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
Beskrivelse Debug FIDO2 requests and responses
Filstørrelse 18.55 KB
Antal Installationer 370
Nuværende Version 0.5
Senest Opdateret 2022-03-07
Udgivelsesdato 2022-03-07
Udvikler DinoDevs
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://gramthanos.github.io/WebDevAuthn/
Hjælpeside-URL https://github.com/GramThanos/WebDevAuthn/issues
Understøttede Sprog 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
}