added hashkill

This commit is contained in:
Yan 2016-04-04 16:23:39 -07:00
parent 9dc5dbb8c1
commit 29ad5edb5e
2 changed files with 11 additions and 0 deletions

View file

@ -50,6 +50,7 @@ Installers for the following tools are included:
| forensics | [testdisk](http://www.cgsecurity.org/wiki/TestDisk) | Testdisk and photorec for file recovery. | <!--tool--><!--test-->
| crypto | [cribdrag](https://github.com/SpiderLabs/cribdrag) | Interactive crib dragging tool (for crypto). | <!--tool--><!--test-->
| crypto | [foresight](https://github.com/ALSchwalm/foresight) | A tool for predicting the output of random number generators. To run, launch "foresee". | <!--tool--><!--test-->
| crypto | [hashkill](https://github.com/gat3way/hashkill) | Hash cracker. | <!--tool--><!--test-->
| crypto | [hashpump](https://github.com/bwall/HashPump) | A tool for performing hash length extension attaacks. | <!--tool--><!--test-->
| crypto | [hashpump-partialhash](https://github.com/mheistermann/HashPump-partialhash) | Hashpump, supporting partially-unknown hashes. | <!--tool--><!--test-->
| crypto | [hash-identifier](https://code.google.com/p/hash-identifier/source/checkout) | Simple hash algorithm identifier. | <!--tool--><!--test-->

10
hashkill/install Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash -e
PREFIX=$PWD
git clone --depth 1 https://github.com/gat3way/hashkill.git
cd hashkill
sed -i -e "s/1\.13/1\.14/g" configure
./configure --prefix="$PREFIX" --with-json
make -j
make install