https://github.com/buckley-w-david/meatspace-password-generator
Generate passwords from real world phenomena
https://github.com/buckley-w-david/meatspace-password-generator
Last synced: 7 months ago
JSON representation
Generate passwords from real world phenomena
- Host: GitHub
- URL: https://github.com/buckley-w-david/meatspace-password-generator
- Owner: buckley-w-david
- License: unlicense
- Created: 2019-08-15T15:48:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-15T23:39:49.000Z (about 6 years ago)
- Last Synced: 2025-03-03T01:05:22.124Z (7 months ago)
- Language: Python
- Homepage: https://pypi.org/project/meatgen/
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Meatspace Password Generator
Generate passwords from real world phenomena
# Usage
``` $ meatgen --help
usage: meatgen [-h] [-d DELIMITER] [--wordlist WORDLIST] key [key ...]Generate passwords from real world phenomena
positional arguments:
key A sequence of keys from the wordlistoptional arguments:
-h, --help show this help message and exit
-d DELIMITER, --delimiter DELIMITER
The string that separates keys and values in the
wordlist
--wordlist WORDLIST Path to a file container a wordlist
```The wordlist is also accepted over `STDIN`.
## Wordlist
A wordlist is simple a textfile containing lines in the form of "{KEY}{DELIMITER}{VALUE}\n", this list is parsed at the beginning of execution and used to generate the output.
Any lines not matching this format will simply be ignored.Typically each password generation technique comes with it's own wordlists. The most well known is [diceware](http://world.std.com/~reinhold/diceware.html), but alternative techniques exist as well, such as [pokerware](https://github.com/skeeto/pokerware).
## Examples
```
$ meatgen --wordlist /home/example-user/Documents/pokerware-formal.txt ACADD ACTCC 3C4CH 5STHS
abide anemia fake peace
$ cat /home/example-user/Documents/pokerware-formal.txt | meatgen ACADD ACTCC 3C4CH 5STHS
abide anemia fake peace
$ meatgen --wordlist /home/example-user/Documents/diceware.wordlist.asc 11136
abbot
```