houndsniff

Hash identification tool
git clone git@git.mcdim.xyz:/var/www/git/houndsniff.git
Log | Files | Refs | README | LICENSE

commit bb3c04d3a834c5875f34ce60ebcb125da9df40fa
parent 67519e2c4e06cc373c7c00c9b2356bc773b9cdb5
Author: Michael Constantine Dimopoulos <mk@mcdim.xyz>
Date:   Tue, 27 Jul 2021 16:27:40 +0000

Small update

Diffstat:
MREADME.md | 2+-
Msrc/Makefile | 4+---
Msrc/houndsniff.1 | 2+-
Msrc/main.c | 4++--
Msrc/select.c | 1+
Msrc/select.h | 10+++++++---
6 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md @@ -1,5 +1,5 @@ # houndsniff -Houndsniff is a minimal hash identification and recognition tool written in C that uses a database to compare a hash's features to characteristics of other common hashing algorithm results. Email hashes that I missed at houndsniff@protonmail.com +Houndsniff is a minimal hash identification and recognition tool written in C that uses a database to compare a hash's features to characteristics of other common hashing algorithm results. Email hashes that I missed at <mk@mcdim.xyz> Website: https://mcdim.xyz/projects/hs.html diff --git a/src/Makefile b/src/Makefile @@ -1,5 +1,5 @@ # Houndsniff https://mcdim.xyz/projects/hs.html -# Check the LICENSE file for legal information +# License: GNU GPL v3.0 CC=gcc FILES=main.c select.c @@ -16,5 +16,3 @@ install: main.c select.c houndsniff.1 uninstall: /usr/bin/$(BIN) /usr/share/man/man1/houndsniff.1 rm /usr/bin/$(BIN) /usr/share/man/man1/houndsniff.1 - - diff --git a/src/houndsniff.1 b/src/houndsniff.1 @@ -16,7 +16,7 @@ If your hash includes a dollar sign ($), make sure you place it in between quote Send missing hashes at .I -houndsniff@protonmail.com +<mk@mcdim.xyz> or contribute to the github project: .I https://github.com/MichaelDim02/houndsniff diff --git a/src/main.c b/src/main.c @@ -11,7 +11,7 @@ * by Michael Constantine Dimopoulos et al */ -#define version "1.7" +#define VERSION "1.7" /* has uppercase letters */ static int @@ -38,7 +38,7 @@ banner() /*https://www.asciiart.eu/animals/dogs*/ printf( "Houndsniff - Hash Identification Program - Version %s\n" - "By Michael Constantine Dimopoulos et al, 2020\n\n",version); + "By Michael Constantine Dimopoulos et al, 2020\n\n",VERSION); } /* This is the first test; diff --git a/src/select.c b/src/select.c @@ -4,6 +4,7 @@ #include "select.h" /* houndsniff + * hash identification program * * this is basically where the program * indexes through the database and picks diff --git a/src/select.h b/src/select.h @@ -1,8 +1,12 @@ /* - * houndsniff by Michael C. Dim. (Kerberos) - * hash identification program + * houndsniff + * hash identification program. + * + * by Michael Constantine Dimopoulos + * https://mcdim.xyz <mk@mcdim.xyz> + * + * select.h * - * select.h */ #ifndef SELECT_H