README ¶
moac-pwtools
moac-pwtools
is a tool to analyze password strength given physical limits to computation. It's inspired by a blog post I wrote: Becoming physically immune to brute-force attacks.
Users provide given values like the mass available to attackers, a time limit for the brute-force attack, and the energy available. moac-pwtools
outputs the likelihood of a successful attack or the minimum password entropy for a possible brute-force failure.
moac-pwtools
uses zxcvbn-go to calculate password entropy.
Installation
GO111MODULE=on go install git.sr.ht/~seirdy/moac-pwtools
Usage
moac-pwtools - analyze password strength with physical limits
USAGE:
moac-pwtools [OPTIONS] [COMMAND]
OPTIONS:
-h Display this help message.
-q Account for quantum computers using Grover's algorithm
-e <energy> Maximum energy used by attacker (J).
-s <entropy> Password entropy.
-m <mass> Mass at attacker's disposal (kg).
-g <energy> Energy used per guess (J).
-P <power> Power available to the computer (W)
-t <time> Time limit for brute-force attack (s).
-p <password> Password to analyze.
COMMANDS:
strength Calculate the liklihood of a successful guess
entropy-limit Calculate the minimum entropy for a brute-force attack failure.
Bottlenecks and redundancy
If a value is provided and that value can be computed from other given values, the computed value will replace the provided value if the computed value is a greater bottleneck.
If the user supplies both mass and energy, the given energy will be replaced with the mass-energy of the provided mass if the given mass-energy is lower.
If the user supplies both a password and a password entropy, the given entropy will be replaced with the calculated entropy of the provided password if the calculated entropy is lower.
Time and energy are the two bottlenecks to computation; the final result will be based on whichever is a greater bottleneck. With the default energy per guess (the Landauer limit), energy should always be a greater bottleneck.
Example
The novel The Hitchhiker's Guide to the Galaxy revealed the Earth to be a supercomputer built to understand "the answer to Life, the Universe, and Everything". The computation was supposed to finish sometime around now.
Let's assume this is a maximally efficient quantum computer powered by the Earth's mass-energy:
- Age of the Earth: ~4.6 billion years, or ~1.45e17 seconds
- Mass of the Earth: ~5.97e24 kg
$ moac-pwtools -qm 5.97e24 -t 1.45e17 entropy-limit
427
Understanding the answer to Life, the Universe, and Everything requires less than 2^427
computations. If the same computer instead tried to brute-force a password, what kind of password might be out of its reach?
$ moac-pwtools -qm 5.97e24 -t 1.45e17 pwgen lowercase uppercase numbers symbols extendedASCII
v¢JÊÙúQ§4mÀÛªZûYÍé©mËiÐ× "½J6y.ñíí'è¦ïϵ°~
If the same computer instead tried to guess the password v¢JÊÙúQ§4mÀÛªZûYÍé©mËiÐ× "½J6y.ñíí'è¦ïϵ°~
, there's a chance that it wouldn't have succeeded in time.
Note: given that the Earth wasn't hollow during the book's opening, it's unlikely that the Earth consumed its own mass to compute. Further research is necessary; perhaps it used solar power, or secret shipments of tiny black-hole batteries? Organic life was supposed to provide a large part of its functionality, so maybe we should restrict ourselves to the Earth's biomass.
Roadmap for 0.1.0
Consider this project highly unstable before v0.1.0.
- godocs and manpage
- Better error handling: validate input, etc.
- Write tests.
- Separate command-line package from the rest of the code in a
cmd/
directory.
Roadmap for 0.2.0
- Read from a config file.
- Add a command to output requirements for a brute-force attack (time/energy/mass required) with the given constraints.
- zxcvbn-go has a lot of functionality that
moac-pwtools
doesn't need; write an entropy estimator that's a bit simpler but gives similar results, optimized for pseudorandom passwords (no dictionary words, focus on estimating charset size and repetitions/patterns).
Ideas for other programs that can use moac-pwtools
- A separate program to "benchmark" external password-generation programs/scripts by repeatedly running them and giving measurements of the worst output.
- A GUI
- Plugins for existing password managers. Account for key length used in encryption; if the key length is lower than the password entropy, the key length is the bottleneck.
License
Copyright (C) 2021 Rohan Kumar
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Documentation ¶
There is no documentation for this package.