mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
hashpump with partial hashes
This commit is contained in:
parent
9465fa00e6
commit
e724a2d9ec
2 changed files with 13 additions and 1 deletions
|
@ -48,8 +48,9 @@ Installers for the following tools are included:
|
|||
| forensics | [testdisk](http://www.cgsecurity.org/wiki/TestDisk) | Testdisk and photorec for file recovery. |
|
||||
| crypto | [cribdrag](https://github.com/SpiderLabs/cribdrag) | Interactive crib dragging tool (for crypto). |
|
||||
| crypto | [hashpump](https://github.com/bwall/HashPump) | A tool for performing hash length extension attaacks. |
|
||||
| crypto | [littleblackbox](https://github.com/devttys0/littleblackbox) | Database of private SSL/SSH keys for embedded devices. |
|
||||
| crypto | [hashpump-partialhash](https://github.com/mheistermann/HashPump-partialhash) | Hashpump, supporting partially-unknown hashes. |
|
||||
| crypto | [hash-identifier](https://code.google.com/p/hash-identifier/source/checkout) | Simple hash algorithm identifier. |
|
||||
| crypto | [littleblackbox](https://github.com/devttys0/littleblackbox) | Database of private SSL/SSH keys for embedded devices. |
|
||||
| crypto | [pemcrack](https://github.com/robertdavidgraham/pemcrack) | SSL PEM file cracker. |
|
||||
| crypto | [reveng](http://reveng.sourceforge.net/) | CRC finder. |
|
||||
| crypto | [sslsplit](https://github.com/droe/sslsplit) | SSL/TLS MITM. |
|
||||
|
|
11
hashpump-partialhash/install
Executable file
11
hashpump-partialhash/install
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
git clone https://github.com/mheistermann/HashPump-partialhash.git
|
||||
cd HashPump-partialhash
|
||||
make -j $(nproc)
|
||||
cd ..
|
||||
|
||||
mkdir bin
|
||||
cd bin
|
||||
ln -s ../HashPump-partialhash/hashpump .
|
||||
cd ..
|
Loading…
Reference in a new issue