mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-05 02:39:13 +00:00
pemcrack
This commit is contained in:
parent
134de8ea6b
commit
98b360b841
2 changed files with 10 additions and 0 deletions
|
@ -50,6 +50,7 @@ Installers for the following tools are included:
|
|||
| crypto | 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 | [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 | [python-paddingoracle](https://github.com/mwielgoszewski/python-paddingoracle) | XOR analysis tool. |
|
||||
| crypto | xortool | XOR analysis tool. |
|
||||
| web | dirs3arch | Web path scanner. |
|
||||
|
|
9
pemcrack/install
Executable file
9
pemcrack/install
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
git clone https://github.com/robertdavidgraham/pemcrack.git
|
||||
cd pemcrack
|
||||
make
|
||||
cd ..
|
||||
|
||||
mkdir -p bin
|
||||
cp pemcrack/bin/pemcrack bin/
|
Loading…
Reference in a new issue