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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}