mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-16 22:57:01 +00:00
reveng
This commit is contained in:
parent
2bb4cbfed5
commit
c44591bbcc
3 changed files with 12 additions and 1 deletions
|
@ -51,6 +51,7 @@ Installers for the following tools are included:
|
|||
| crypto | [littleblackbox](https://github.com/devttys0/littleblackbox) | Database of private SSL/SSH keys for embedded devices. |
|
||||
| crypto | [hash-identifier](https://code.google.com/p/hash-identifier/source/checkout) | Simple hash algorithm identifier. |
|
||||
| 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. |
|
||||
| crypto | [python-paddingoracle](https://github.com/mwielgoszewski/python-paddingoracle) | XOR analysis tool. |
|
||||
| crypto | xortool | XOR analysis tool. |
|
||||
|
|
1
TODO
1
TODO
|
@ -1,3 +1,2 @@
|
|||
xrop -- doesn't build
|
||||
https://github.com/robertdavidgraham/pemcrack
|
||||
http://www.mscs.dal.ca/~selinger/md5collision/
|
||||
|
|
11
reveng/install
Executable file
11
reveng/install
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
|
||||
curl http://hivelocity.dl.sourceforge.net/project/reveng/1.3.0/reveng-1.3.0.tar.gz | tar xvz
|
||||
cd reveng-1.3.0
|
||||
sed -i -e "s/^#define BMP_BIT.*/#define BMP_BIT 64/" config.h
|
||||
sed -i -e "s/^#define BMP_SUB.*/#define BMP_SUB 32/" config.h
|
||||
make -j $(nproc)
|
||||
cd ..
|
||||
|
||||
mkdir -p bin
|
||||
cp reveng-1.3.0/reveng bin
|
Loading…
Add table
Reference in a new issue