commands.sh

hashid

all

Python3 program that identifies data and password hashes.

More info →

Options (4)

-e, --extendedboolean

Show all possible hash types (including salted hashes)

Example: hashid {{[-e|--extended]}} {{hash}}
-m, --modeboolean

Show `hashcat`'s mode number and `john`'s format string of the hash types

Example: hashid {{[-m|--mode]}} {{[-j|--john]}} {{hash}}
-j, --johnboolean

Show `hashcat`'s mode number and `john`'s format string of the hash types

Example: hashid {{[-m|--mode]}} {{[-j|--john]}} {{hash}}
-o, --outfileboolean

Save output to a file instead of printing to `stdout`

Example: hashid {{[-o|--outfile]}} {{path/to/output.txt}} {{hash}}

Examples (6)

Identify hashes from `stdin` (through typing, copying and pasting, or piping the hash into the program)

Identify one or more hashes

hashid hash1 hash2 ...

Identify hashes on a file (one hash per line)

hashid path/to/hashes.txt

Show all possible hash types (including salted hashes)

hashid [-e|--extended] hash

Show `hashcat`'s mode number and `john`'s format string of the hash types

hashid [-m|--mode] [-j|--john] hash

Save output to a file instead of printing to `stdout`

hashid [-o|--outfile] path/to/output.txt hash
made by @shridhargupta | data from tldr-pages