From 371734d63f99ee7926ac03487fc6124b0718ed8d Mon Sep 17 00:00:00 2001 From: Jack Rendor <12821606+jackrendor@users.noreply.github.com> Date: Fri, 22 Sep 2023 17:43:42 +0200 Subject: [PATCH] Updated readme with installation process --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b5d805..845fde9 100644 --- a/README.md +++ b/README.md @@ -8,16 +8,25 @@ Quick lookup for the original value of an hash # Purpose I was tired of looking up for common hashes values by hand. During CTFs you will eventually encounter some hashes. Instead of cracking them on your local machine or fire up a browser and look it up, the script does it for you. It tries some services to see if it's a common and known hash. +# Install +Install `golang` and then download and build the source code: +`go install github.com/jackrendor/jhf@latest` + +On a linux machine, the binary should be located in `~/go/bin/` + +On a windows machine, you should be able to run it from the terminal without specifying the path + +# Example ```bash -./jhf 21232f297a57a5a743894a0e4a801fc3 +jhf 21232f297a57a5a743894a0e4a801fc3 ``` You can specify more than one hash ```bash -./jhf b3ddbc502e307665f346cbd6e52cc10d 0bc11f2f3279555c317be9cf9e52645a +jhf b3ddbc502e307665f346cbd6e52cc10d 0bc11f2f3279555c317be9cf9e52645a ``` Or you can read from file by using `-f` or `--file` ```bash -./jhf -file report/hashes.txt +jhf -file report/hashes.txt ```