1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
.\" Manpage for hashid
.\" This file is part of hashID.
.\"
.\" hashID is free software: you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation, either version 3 of the License, or
.\" (at your option) any later version.
.\"
.\" hashID 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 General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with hashID. If not, see <http://www.gnu.org/licenses/>.
.TH hashid 7 "28 January 2014" "v1.4" "hashid man page"
.SH NAME
\fBhashid\fP \- Identify the different types of hashes used to encrypt data
.SH SYNOPSIS
.br
.B hashid
[-h] [-e] [-m] [-j] [-o FILE] [--version] INPUT
.SH DESCRIPTION
.B hashID
is a tool written in Python 3.x which supports the identification of over 210 unique hash types using regular expressions.
It is able to identify a single hash, parse a file or read files in a directory and identify the hashes within them.
.B hashID
is also capable of including the corresponding hashcat mode and/or JohnTheRipper format in its output.
Although
.B hashID
is written in Python 3.x it should also work with Python 2.7.
.SH OPTIONS
.TP
\fB\-e, \-\-extended\fR
list all possible hash algorithms including salted passwords
.TP
\fB\-m, \-\-mode\fR
include corresponding hashcat mode in output
.TP
\fB\-j, \-\-john\fR
include corresponding JohnTheRipper format in output
.TP
\fB\-o FILE, \-\-outfile FILE\fR
write output to file (default: STDOUT)
.TP
\fB\-h, \-\-help\fR
show help message and exit
.TP
\fB\-\-version\fR
show program's version number and exit
.SH BUGS
If you find a bug, please report it at https://github.com/psypanda/hashID/issues
.SH AUTHOR
c0re (c0re@psypanda.org)
|