From fa09512502c7bf63b5b39e9631833205867292a0 Mon Sep 17 00:00:00 2001 From: Yan Date: Thu, 7 May 2015 14:14:46 -0700 Subject: [PATCH] testdisk --- README.md | 3 ++- testdisk/install | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 testdisk/install diff --git a/README.md b/README.md index d1a8521..6d27143 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,14 @@ Installers for the following tools are included: | binary | afl | State-of-the-art fuzzer. | | binary | checksec | Check binary hardening settings. | | binary | crosstool | Cross-compilers and cross-architecture tools. | -| binary | firmware-mod-kit | Tools for firmware packing/unpacking. | | binary | gdb | Up-to-date gdb with python2 bindings. | | binary | peda | Enhanced environment for gdb. | | binary | preeny | A collection of helpful preloads (compiled for many architectures!). | | binary | qemu | Latest version of qemu! | | binary | shellnoob | Shellcode writing helper. | | binary | xrop | Gadget finder. | +| forensics | firmware-mod-kit | Tools for firmware packing/unpacking. | +| forensics | testdisk | Testdisk and photorec for file recovery. | | 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. | diff --git a/testdisk/install b/testdisk/install new file mode 100755 index 0000000..42295ea --- /dev/null +++ b/testdisk/install @@ -0,0 +1,8 @@ +#!/bin/bash -e + +curl http://www.cgsecurity.org/testdisk-7.0.linux26-x86_64.tar.bz2 | tar xvj + +mkdir -p bin +cd bin +ln -s ../testdisk-7.0/*_static . +cd ..