Alzheimer password generator

Final password is cryptographically derived from web page URL address, salt and user provided secret passphrase.

Alzheimer password generatorとは何ですか?

Alzheimer password generatorはviralpoetryによって開発されたChromeの拡張機能で、その主な機能は「Final password is cryptographically derived from web page URL address, salt and user provided secret passphrase.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Alzheimer password generator拡張機能のCRXファイルをダウンロード

Alzheimer password generator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Open Source Chrome extension for domain dependent password generation (ALPHA version)

Store seed for your password locally on your computer for additional security.
Final password is cryptographically derived from web page URL address, salt and user provided secret passphrase. The salt should be stored physically, so you can recover it in the future.

WORK IN PROGRESS. The crypto part works fine, but there are some jQuery/css issues on some pages (iframes, jQuery dialog etc.)

CURRENT THREAT MODEL:
* No one with an access to the PC with installed extension should be able to authenticate without knowing the correct passphrase.

* The same passphrase used in two different web browsers should produce two different passwords (cryptographic salt will solve this problem).

* If an attacker obtains password for some websites, she should not be able to derive passwords for another websites using that knowledge.

* Attacker should not be able to brute force master passphrase from the salt and knowledge of one password (PBKDF with lots of iterations).

* It provides protection against basic keyloggers (but they can read our salt from the memory / file...)

For more information, see Github repository.                    

拡張機能の基本情報

名前 Alzheimer password generator Alzheimer password generator
ID emclcafdgdeodlhpenmejdapecfgenof
公式URL https://chromewebstore.google.com/detail/alzheimer-password-genera/emclcafdgdeodlhpenmejdapecfgenof
説明 Final password is cryptographically derived from web page URL address, salt and user provided secret passphrase.
ファイルサイズ 878 KB
インストール数 27
現在のバージョン 0.91
最終更新日 2018-07-28
公開日 2018-07-28
評価 4.00/5 合計 1 レビュー
開発者 viralpoetry
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/viralpoetry/password-generator
ヘルプページのURL https://github.com/viralpoetry/password-generator
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Alzheimer password generator",
    "description": "Final password is cryptographically derived from web page URL address, salt and user provided secret passphrase.",
    "version": "0.91",
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        ""
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "theme\/jquery-ui.css",
                "custom.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/jquery-ui.min.js",
                "js\/jquery.imgpreload.min.js",
                "lib\/pbkdf2.js",
                "crypto_helpers.js",
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "theme\/images\/*.png",
        "theme\/jquery-ui.css",
        "custom.css"
    ],
    "icons": {
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_icon": "img\/icon.png"
    },
    "manifest_version": 2
}