WebDevAuthn

Debug FIDO2 requests and responses

Vad är WebDevAuthn?

WebDevAuthn är en Chrome-tillägg utvecklad av DinoDevs, och dess huvudfunktion är "Debug FIDO2 requests and responses".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner WebDevAuthn-förlängningens CRX-fil

Ladda ner WebDevAuthn-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
Officiell webbadress https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
Beskrivning Debug FIDO2 requests and responses
Filstorlek 18.55 KB
Antal Installationer 370
Aktuell Version 0.5
Senast Uppdaterad 2022-03-07
Publiceringsdatum 2022-03-07
Utvecklare DinoDevs
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://gramthanos.github.io/WebDevAuthn/
Hjälpsida URL https://github.com/GramThanos/WebDevAuthn/issues
Stödda Språk 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
}