WindowsEnjoyer / Hashwizard

Lazer's fork of Hashwizard

Home Page:https://ap-hashwizard.up.railway.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hashwizard

hashwizard-cover

is a suite of tools and APIs that allow you to interact with hashing

Get

Docker

The application is dockerized to simulate app on low memory enviorments

docker build -t hashwizard-dev .
docker run -p 8080:3000 --memory=512m hashwizard-dev # forward 3000 to 8080

Server

node ./index.js
--port=3000 # explicitly specify the port
--no-dump # disables fetching initial load

NOTE: if --no-dump option is set, by default the app will return an internal-error, please refer to ./routes/crack.js. this measure is put into place since our app runs in limited memory of 512 MB which is the free tier for render.com

Test

node ./tests/*.test.js

Miscellaneous

node ./lib/DumpRemoteTableToFile.js 

This attempts to fetch a large dataset from mongoDB via ./models/HashModel.js and break it down into chunks which are categorized by algorithm.

# output generated by "node ./lib/DumpRemoteTableToFile.js "
 
./data
├── data-md5
├── data-sha1
└── data-sha256
node ./lib/UpdateDBFromLocalIndex.js

This takes a .txt file as the only argument. This text file is uploaded AS-IS to the database and is later fetched-from through the DumpRemoteTableToFile

Notes on Memory optimization

Several measures have been implemented to allow us to deal with a data base of more than 100 MB, here are a few of them

  • Chunking: when the large text dataset is pulled from the database in DumpRemoteTableToFile it is broken down into chunks of 1500

API

/api/hash/

hash the provided text using the {hash} function

  • /:hash: the hash function to use; supports md5, sha256, sha1, sha224, sha256, sha384, sha512, sha3-224, sha3-256, sha3-384, sha3-512, shake128, shake256

Query params

  • text=: string of characters to hash

Success

{
   "hash" : "5d41402abc4b2a76b9719d911017c592",
   "status" : 200,
   "text" : "hello"
}

Error

{
   "error" : "invalid-hash-function",
   "message" : "the hash function specified is not valid",
   "status" : 400
},

{
   "error" : "missing-text-param",
   "message" : "the text parameter was not provided for `/api/hash`",
   "status" : 400
}

/api/crack/

Attempts to crack a given hash via a custom 20+ MB Rainbow table

  • /:hash: the hash function to use; supports md5, sha256 and sha1

Query params

  • hash=: Hash to be cracked

Success

{
   "hash" : "5d41402abc4b2a76b9719d911017c592",
   "status" : 200,
   "text" : "hello"
},

{
   "hash" : "e",
   "message" : "was unable to crack the given hash",
   "status" : 200,
   "text" : null
}

Error

{
   "error" : "missing-hash-param",
   "message" : "the hash parameter was not provided for `/api/crack`",
   "status" : 400
},

{
   "error" : "invalid-hash-function",
   "message" : "the hash function specified is not valid",
   "status" : 400
}

Credits

About

Lazer's fork of Hashwizard

https://ap-hashwizard.up.railway.app/


Languages

Language:JavaScript 57.5%Language:HTML 26.6%Language:CSS 15.5%Language:Dockerfile 0.3%