mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
testdisk
This commit is contained in:
parent
2c03c218fb
commit
fa09512502
2 changed files with 10 additions and 1 deletions
|
@ -27,13 +27,14 @@ Installers for the following tools are included:
|
||||||
| binary | afl | State-of-the-art fuzzer. |
|
| binary | afl | State-of-the-art fuzzer. |
|
||||||
| binary | checksec | Check binary hardening settings. |
|
| binary | checksec | Check binary hardening settings. |
|
||||||
| binary | crosstool | Cross-compilers and cross-architecture tools. |
|
| 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 | gdb | Up-to-date gdb with python2 bindings. |
|
||||||
| binary | peda | Enhanced environment for gdb. |
|
| binary | peda | Enhanced environment for gdb. |
|
||||||
| binary | preeny | A collection of helpful preloads (compiled for many architectures!). |
|
| binary | preeny | A collection of helpful preloads (compiled for many architectures!). |
|
||||||
| binary | qemu | Latest version of qemu! |
|
| binary | qemu | Latest version of qemu! |
|
||||||
| binary | shellnoob | Shellcode writing helper. |
|
| binary | shellnoob | Shellcode writing helper. |
|
||||||
| binary | xrop | Gadget finder. |
|
| 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 | cribdrag | Interactive crib dragging tool (for crypto). |
|
||||||
| crypto | hashpump | A tool for performing hash length extension attaacks. |
|
| 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 | [hash-identifier](https://code.google.com/p/hash-identifier/source/checkout) | Simple hash algorithm identifier. |
|
||||||
|
|
8
testdisk/install
Executable file
8
testdisk/install
Executable file
|
@ -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 ..
|
Loading…
Reference in a new issue