Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TheTechromancer/password-smelter
PASSWORDS, NED! IN AN OPEN FIEEEELD!!
https://github.com/TheTechromancer/password-smelter
Last synced: 3 months ago
JSON representation
PASSWORDS, NED! IN AN OPEN FIEEEELD!!
- Host: GitHub
- URL: https://github.com/TheTechromancer/password-smelter
- Owner: TheTechromancer
- License: gpl-3.0
- Created: 2021-05-06T21:22:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-17T19:28:09.000Z (about 1 year ago)
- Last Synced: 2024-05-13T00:45:31.750Z (8 months ago)
- Language: Python
- Size: 91.8 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-password-cracking - password-smelter - Ingests passwords from hashcat, etc. and outputs to HTML, Markdown, XLSX, PNG, JSON. Dark and light themes supported. Compliments password-stretcher. (Wordlist tools / Analysis)
README
![password-smelter](https://user-images.githubusercontent.com/20261699/117364387-d7d9e280-ae8b-11eb-927e-c6d4cbf7b76e.png)
**Analyze the shite out of some passwords.** Compliments [password-stretcher](https://github.com/thetechromancer/password-stretcher).
Ingests passwords from hashcat, etc. and outputs to HTML, Markdown, XLSX, PNG, JSON. Dark and light themes supported.
## Installation
~~~bash
$ pipx install password-smelter
~~~
![password_smelter](https://user-images.githubusercontent.com/20261699/117370076-dc09fe00-ae93-11eb-9703-0c3d4ddef35a.png)
## Example: Analyze cracked passwords from hashcat
~~~bash
$ password-smelter -d: -i <(hashcat --show -m 0 hashes.txt) <(hashcat --left -m 0 hashes.txt)# if there are usernames
$ password-smelter -d: -f3- -i cracked.txt left.txt
~~~## Example: Analyze wordlist from STDIN
~~~bash
$ cat passwords.txt | password-smelter --minlength 8 --mincharsets 2
~~~## Example: Output to Markdown, XLSX, PNG, JSON
~~~bash
$ cat passwords.txt | password-smelter -o analyzed_passwords$ ls -R analyzed_passwords
analyzed_passwords/:
20210505_150937_password_analysis_images 20210505_150937_password_analysis.md
20210505_150937_password_analysis.json 20210505_150937_password_analysis.xlsxanalyzed_passwords/20210505_150937_password_analysis_images:
advancedmasks.png basewords.png charactersets.png entropy.png length.png mutations.png numbers.png simplemasks.png symbols.png
~~~## Usage:
~~~
$ password-smelter --help
usage: melter.py [-h] [-i [...]] [-o OUTPUT] [--limit 20] [--hiderare 1.0] [--title TITLE] [--theme {light,dark}] [--minlength 8] [--maxlength 8] [--mincharsets 3]
[--charsets {numeric,loweralpha,upperalpha,special} [{numeric,loweralpha,upperalpha,special} ...]] [--regex '$[a-z]*^'] [-d :] [-f 2] [--port 80] [--host 0.0.0.0]
[--no-server] [--no-browser]PASSWORDS NED, IN AN OPEN FIELD
optional arguments:
-h, --help show this help message and exit
-i [ ...], --input [ ...]
password list(s) to analyze (default: STDIN)
-o OUTPUT, --output OUTPUT
save all data to this directory (it will be created)report options:
--limit 20 limit the number of results per chart (default: 20)
--hiderare 1.0 hide statistics covering less than this percent of the max value (default: 5.0)
--title TITLE title of report
--theme {light,dark} visual theme for report (default: dark)password complexity filters:
--minlength 8 minimum password length
--maxlength 8 maximum password length
--mincharsets 3 must have this many character sets
--charsets {numeric,loweralpha,upperalpha,special} [{numeric,loweralpha,upperalpha,special} ...]
must include these character sets
--regex '$[a-z]*^' custom regexpassword file parsing options:
-d :, --delimiter : file delimiter
-f 2, --field 2 password field number (default: 2)web server options options:
--port 80 port to listen on (default: 8050)
--host 0.0.0.0 interface to listen on (default: 127.0.0.1)
--no-server don't start a web server
--no-browser don't attempt to open a web browser
~~~## Credit
Parts of this tool were adapted from the Password Statistical Analysis tool by Peter Kacherginsky
https://github.com/iphelix/pack