mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 08:24:12 +00:00
added scrdec for decoding windows script files
This commit is contained in:
parent
93bb45d121
commit
b2a047f054
2 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,7 @@ Installers for the following tools are included:
|
|||
| forensics | [firmware-mod-kit](https://code.google.com/p/firmware-mod-kit/) | Tools for firmware packing/unpacking. |
|
||||
| forensics | [testdisk](http://www.cgsecurity.org/wiki/TestDisk) | Testdisk and photorec for file recovery. |
|
||||
| forensics | [pdf-parser](http://blog.didierstevens.com/programs/pdf-tools/) | Tool for digging in PDF files |
|
||||
| forensics | [scrdec](https://gist.github.com/bcse/1834878) | A decoder for encoded Windows Scripts. |
|
||||
| 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 | [hashpump-partialhash](https://github.com/mheistermann/HashPump-partialhash) | Hashpump, supporting partially-unknown hashes. |
|
||||
|
|
5
scrdec18/install
Executable file
5
scrdec18/install
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
wget "https://gist.githubusercontent.com/bcse/1834878/raw/7483fb72abbb32aa69b853fdcc9f6f72e7568677/scrdec18.c"
|
||||
mkdir -p bin
|
||||
gcc -o bin/scrdec18 scrdec18.c
|
Loading…
Reference in a new issue