mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
hash identifier
This commit is contained in:
parent
9f24cd0d97
commit
2c03c218fb
2 changed files with 10 additions and 0 deletions
|
@ -36,6 +36,7 @@ Installers for the following tools are included:
|
|||
| binary | xrop | Gadget finder. |
|
||||
| crypto | cribdrag | Interactive crib dragging tool (for crypto). |
|
||||
| crypto | hashpump | A tool for performing hash length extension attaacks. |
|
||||
| crypto | [hash-identifier](https://code.google.com/p/hash-identifier/source/checkout) | Simple hash algorithm identifier. |
|
||||
| crypto | xortool | XOR analysis tool. |
|
||||
| web | dirs3arch | Web path scanner. |
|
||||
| web | sqlmap | SQL injection automation engine. |
|
||||
|
|
9
hash-identifier/install
Executable file
9
hash-identifier/install
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
svn checkout http://hash-identifier.googlecode.com/svn/trunk/ hash-identifier-read-only
|
||||
chmod 755 hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py
|
||||
fromdos hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py || dos2unix hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py
|
||||
|
||||
mkdir -p bin
|
||||
cd bin
|
||||
ln -s ../hash-identifier-read-only/Hash_ID_v1.1/Hash_ID.py ./hash_id.py
|
Loading…
Reference in a new issue