Select Language

Studying the Impact of Managers on Password Strength and Reuse

A large-scale study analyzing how password managers influence real-life password strength and reuse, with in-situ monitoring via browser plugin.
strongpassword.org | PDF Size: 1.0 MB
Rating: 4.5/5
Your Rating
You have already rated this document
PDF Document Cover - Studying the Impact of Managers on Password Strength and Reuse

Table of Contents

1. Introduction

Passwords remain the dominant authentication method for online services despite well-known security flaws. Users often struggle to create strong, unique passwords due to cognitive limitations and the increasing number of accounts. Password managers are frequently recommended as a solution, promising to store, autofill, and generate strong passwords. However, prior work has not systematically studied their actual impact on password strength and reuse. This paper presents the first large-scale study to fill this gap, using a combination of online surveys and in-situ password monitoring via a browser plugin.

2. Methodology

2.1 Survey Design

We conducted an online survey with 476 participants to understand their password creation and management strategies. The survey included questions about password manager usage, password generation habits, and self-reported password strength.

2.2 In-Situ Monitoring via Browser Plugin

From the survey respondents, 170 participants installed a browser plugin that monitored their password entries in real-time. The plugin recorded the password itself (hashed for privacy), the entry method (human typed vs. autofilled by manager), and the website domain. This allowed us to collect objective data on password strength and reuse without relying on self-reports.

2.3 Participant Recruitment

Participants were recruited through online advertisements and university mailing lists. The final sample of 170 monitoring participants was diverse in age, gender, and technical background, though slightly skewed towards younger, more tech-savvy users.

3. Results

3.1 Password Strength Analysis

We measured password strength using Shannon entropy and the zxcvbn library. Passwords entered via password managers had significantly higher entropy (mean $H \approx 52.3$ bits) compared to human-typed passwords (mean $H \approx 28.7$ bits). However, this benefit was contingent on the manager including a password generator; managers used only as storage showed weaker passwords.

3.2 Password Reuse Patterns

Password reuse was measured by counting the number of distinct websites where the same password hash appeared. Users of password managers with generators reused passwords across an average of 1.2 sites, while non-manager users reused across 4.7 sites. Managers without generators showed intermediate reuse (2.8 sites), suggesting that pure storage does not fully solve the reuse problem.

3.3 Impact of Password Generators

The presence of a built-in password generator was the critical factor. Managers that auto-generated passwords produced both stronger and more unique passwords. In contrast, managers used solely as a password vault (e.g., storing user-created passwords) showed only marginal improvements over no manager at all.

4. Key Insights

5. Technical Details & Formulas

Password strength was quantified using Shannon entropy:

$H = -\sum_{i=1}^{n} p(x_i) \log_2 p(x_i)$

where $p(x_i)$ is the probability of character $x_i$ in the password. For practical estimation, we used the zxcvbn library, which estimates entropy based on pattern matching (e.g., dictionary words, keyboard sequences).

Reuse was measured as the average number of distinct domains per unique password hash:

$R = \frac{\text{total passwords}}{\text{unique hashes}}$

6. Experimental Results & Charts

Figure 1: Password Entropy by Entry Method

Bar chart comparing mean entropy for human-typed (28.7 bits), manager-stored (34.1 bits), and manager-generated (52.3 bits) passwords. Error bars show 95% confidence intervals.

Figure 2: Password Reuse by Manager Type

Line chart showing average number of sites per password for no manager (4.7), manager without generator (2.8), and manager with generator (1.2). The downward trend confirms the benefit of generators.

Table 1: Summary Statistics

GroupMean Entropy (bits)Mean Reuse (sites)
No Manager28.74.7
Manager (no generator)34.12.8
Manager (with generator)52.31.2

7. Analysis Framework Example

Case Study: Evaluating a Password Manager's Impact

Consider a user who adopts a password manager. The framework for analysis involves three steps:

  1. Pre-adoption baseline: Measure the user's current password entropy and reuse rate via a browser plugin for 2 weeks.
  2. Intervention: Introduce the password manager and instruct the user to use its password generator for all new accounts.
  3. Post-adoption measurement: Monitor for another 2 weeks, comparing entropy and reuse.

Expected outcome: Entropy increases from ~28 bits to ~50 bits; reuse drops from ~4.5 sites to ~1.2 sites.

8. Future Applications & Outlook

This study has direct implications for password manager design and user education. Future work should explore:

9. Original Analysis

Core Insight: Password managers are not a silver bullet—their security benefit is entirely contingent on the inclusion of an active password generator. Without it, they merely digitize the same bad habits users already have.

Logical Flow: The study logically progresses from survey to in-situ monitoring, isolating the effect of password managers by entry method. The data clearly shows a bifurcation: managers with generators produce strong, unique passwords; managers without generators produce only marginal improvements. This refutes the naive assumption that any password manager is better than none.

Strengths & Flaws: The major strength is the in-situ data collection, which avoids self-report bias. However, the sample skews young and tech-savvy, limiting generalizability. Additionally, the study does not account for the master password strength, which is a critical vulnerability in any password manager system. As noted by the USENIX Security 2021 study on password manager vulnerabilities, master password weaknesses can undermine all stored passwords.

Actionable Insights: For practitioners, the message is clear: deploy password managers that force the use of a password generator. For researchers, the study opens the door to investigating why users resist generators and how to design interventions that nudge them toward better behavior. The IEEE S&P 2020 workshop on usable security has called for more such ecologically valid studies.

10. References