PwdFly

Generate Secure Password on the fly.

什么是PwdFly?

PwdFly是由Narayan Gowraj开发的Chrome扩展程序,该扩展的主要功能是“Generate Secure Password on the fly.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载PwdFly扩展crx文件

下载PwdFly扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        In reality, users tend to reuse passwords or make trivial changes to their existing passwords to create new ones and use them across different sites for ease of memorization. So, creating secure passwords for every site has become a daunting task. To overcome this daunting and challenging task, PwdFly is available as a chrome extension, website, Android app to help users create secure passwords based on a Master Password and the site's URL as the key for that website. PwdFly generates site-specific secure passwords by taking the user's Master Password, the website's URL, email address of the user and the version for the password. The Master Password is the secret, the URL acts as the index, the email address concatenated with the URL acts as the salt, the version control is used to generate new passwords for a particular website without having the user to change the master password. PwdFly uses Scrypt as the one-way function which also serves as the key-stretching algorithm. The password generated by PwdFly ranges between 12 and 16 characters and it contains uppercase characters, lowercase characters, numbers and special characters and hence the generated site-specific passwords are compliant with every possible password policy.

Website link: www.pwdfly.com

>> PwdFly uses Scrypt to generate passwords. Scrypt is resistant against brute-force attacks. Password generated from PwdFly are random and contains a mix of all combinations

>> Version Control is a few feature which has been implemented in PwdFly which allows users to generate new passwords without changing the master password.

>> It combines the URL of the site and the email address of the user which is unique in all cases to generate the salt for the Master Password

>> PwdFly never stores the master password anywhere and hence they are not vulnerable to attacks that occur due to lack of encryption, not adding salt etc. It just generates the site-specific password on the client-side

>> Source code is publicly available and hence users need not trust the software blindly. Its always going to be a free software.

>> Its omnipresent as it is available as an extension, website and an android app. It requires no internet connection

>> The extension places the password directly onto the password field of the website for which password is being generated. This prevents users from copying passwords to clipboard or sticky notes

>> Generalisation of URL has been implemented.Irrespective of the different login links a website has it generalizes the URL considering only the domain name excluding the extension. For example : It strips the URL to Facebook for login links like https://www.facebook.com/, https://www.facebook.com/login.php.

>> PwdFly is purely a client-side application as it uses JavaScript implementation of Scrypt. Master Passwords are never sent over the network and not vulnerable to MITM attacks                    

扩展基本信息

名称 PwdFly PwdFly
ID jiafhfdmpdhllldnlphfffkfknhldceh
官方URL https://chromewebstore.google.com/detail/pwdfly/jiafhfdmpdhllldnlphfffkfknhldceh
简介 Generate Secure Password on the fly.
文件大小 133 KB
安装次数 49
当前版本 0.5
更新时间 2015-01-08
上架时间 2015-01-08
评分 5.00/5 共11次评分
开发者 Narayan Gowraj
付费类型 free
扩展官网 http://pwdfly.com/
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PwdFly",
    "short_name": "PwdFly",
    "manifest_version": 2,
    "version": "0.5",
    "description": "Generate Secure Password on the fly.",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": "images\/extension.png",
        "default_popup": "pwdfly.html"
    }
}