WebDevAuthn

Debug FIDO2 requests and responses

Co je WebDevAuthn?

WebDevAuthn je rozšíření Chrome vyvinuté DinoDevs, a jeho hlavní funkcí je „Debug FIDO2 requests and responses“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření WebDevAuthn

Stáhněte si soubory rozšíření WebDevAuthn ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
Oficiální URL https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
Popis Debug FIDO2 requests and responses
Velikost souboru 18.55 KB
Počet instalací 370
Aktuální Verze 0.5
Poslední Aktualizace 2022-03-07
Datum Vydání 2022-03-07
Vývojář DinoDevs
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://gramthanos.github.io/WebDevAuthn/
URL Stránky Nápovědy https://github.com/GramThanos/WebDevAuthn/issues
Podporované Jazyky 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
}