mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
adding fastcoll
This commit is contained in:
parent
14600cd006
commit
5a22a7107d
2 changed files with 10 additions and 0 deletions
|
@ -55,6 +55,7 @@ Installers for the following tools are included:
|
|||
| forensics | [scrdec](https://gist.github.com/bcse/1834878) | A decoder for encoded Windows Scripts. | <!--tool--><!--test-->
|
||||
| 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 | [fastcoll](https://www.win.tue.nl/hashclash/) | An md5sum collision generator. | <!--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 | [featherduster](https://github.com/nccgroup/featherduster) | An automated, modular cryptanalysis tool. | <!--tool--><!--no-test-->
|
||||
| crypto | [hashkill](https://github.com/gat3way/hashkill) | Hash cracker. | <!--tool--><!--test-->
|
||||
|
|
9
fastcoll/install
Executable file
9
fastcoll/install
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
[ -e fastcoll ] || git clone https://github.com/upbit/clone-fastcoll fastcoll
|
||||
cd fastcoll
|
||||
make
|
||||
|
||||
cd ..
|
||||
mkdir bin
|
||||
cp fastcoll/fastcoll bin
|
Loading…
Reference in a new issue