WebDevAuthn

Debug FIDO2 requests and responses

WebDevAuthn là gì?

WebDevAuthn là một tiện ích mở rộng Chrome được phát triển bởi DinoDevs, và tính năng chính của nó là "Debug FIDO2 requests and responses".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WebDevAuthn

Tải xuống các tệp mở rộng WebDevAuthn dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WebDevAuthn WebDevAuthn
ID aofdjdfdpmfeohecddhgdjfnigggddpd
URL Chính Thức https://chromewebstore.google.com/detail/webdevauthn/aofdjdfdpmfeohecddhgdjfnigggddpd
Mô tả Debug FIDO2 requests and responses
Kích Thước Tệp 18.55 KB
Số Lần Cài Đặt 370
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2022-03-07
Ngày Phát Hành 2022-03-07
Nhà Phát Triển DinoDevs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://gramthanos.github.io/WebDevAuthn/
URL Trang Trợ Giúp https://github.com/GramThanos/WebDevAuthn/issues
Ngôn Ngữ Được Hỗ Trợ 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
}