WebDevAuthn

Debug FIDO2 requests and responses

Cos'è WebDevAuthn?

WebDevAuthn è un'estensione di Chrome sviluppata da DinoDevs, e la sua funzione principale è "Debug FIDO2 requests and responses".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione WebDevAuthn

Scarica i file di estensione WebDevAuthn in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
URL Ufficiale https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
Descrizione Debug FIDO2 requests and responses
Dimensione del File 18.55 KB
Conteggio Installazioni 370
Versione Corrente 0.5
Ultimo Aggiornamento 2022-03-07
Data di Pubblicazione 2022-03-07
Sviluppatore DinoDevs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://gramthanos.github.io/WebDevAuthn/
URL della Pagina di Aiuto https://github.com/GramThanos/WebDevAuthn/issues
Lingue Supportate 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
}