2021-10-14 04:27:02 +01:00
|
|
|
# hashid
|
|
|
|
|
|
|
|
> Python3 program that identifies data and password hashes.
|
|
|
|
> More information: <https://github.com/psypanda/hashID>.
|
|
|
|
|
2023-08-09 06:29:02 +01:00
|
|
|
- Identify hashes from `stdin` (through typing, copying and pasting, or piping the hash into the program):
|
2021-10-14 04:27:02 +01:00
|
|
|
|
|
|
|
`hashid`
|
|
|
|
|
2024-01-31 03:55:19 +00:00
|
|
|
- Identify one or more hashes:
|
2021-10-14 04:27:02 +01:00
|
|
|
|
2024-01-31 03:55:19 +00:00
|
|
|
`hashid {{hash1 hash2 ...}}`
|
2021-10-14 04:27:02 +01:00
|
|
|
|
|
|
|
- Identify hashes on a file (one hash per line):
|
|
|
|
|
|
|
|
`hashid {{path/to/hashes.txt}}`
|
|
|
|
|
|
|
|
- Show all possible hash types (including salted hashes):
|
|
|
|
|
|
|
|
`hashid --extended {{hash}}`
|
|
|
|
|
|
|
|
- Show `hashcat`'s mode number and `john`'s format string of the hash types:
|
|
|
|
|
|
|
|
`hashid --mode --john {{hash}}`
|
|
|
|
|
2023-08-09 06:29:02 +01:00
|
|
|
- Save output to a file instead of printing to `stdout`:
|
2021-10-14 04:27:02 +01:00
|
|
|
|
|
|
|
`hashid --outfile {{path/to/output.txt}} {{hash}}`
|