mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-16 22:57:01 +00:00
added elfparser
This commit is contained in:
parent
cf60340d24
commit
87702c4c9e
3 changed files with 11 additions and 0 deletions
|
@ -16,6 +16,7 @@ Installers for the following tools are included:
|
|||
| binary | [codereason](https://github.com/trailofbits/codereason) | Semantic Binary Code Analysis Framework. | <!--tool--><!--failing-->
|
||||
| binary | [crosstool-ng](http://crosstool-ng.org/) | Cross-compilers and cross-architecture tools. | <!--tool--><!--no-test-->
|
||||
| binary | [elfkickers](http://www.muppetlabs.com/~breadbox/software/elfkickers.html) | A set of utilities for working with ELF files. | <!--tool--><!--test-->
|
||||
| binary | [elfparser](http://www.elfparser.com/) | Quickly determine the capabilities of an ELF binary through static analysis. | <!--tool--><!--test-->
|
||||
| binary | [evilize](http://www.mathstat.dal.ca/~selinger/md5collision/) | Tool to create MD5 colliding binaries | <!--tool--><!--test-->
|
||||
| binary | [gdb](http://www.gnu.org/software/gdb/) | Up-to-date gdb with python2 bindings. | <!--tool--><!--failing-->
|
||||
| binary | [pathgrind](https://github.com/codelion/pathgrind) | Path-based, symbolically-assisted fuzzer. | <!--tool--><!--test-->
|
||||
|
|
7
elfparser/install
Executable file
7
elfparser/install
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
wget http://www.elfparser.com/release/elfparser_x86_64_1.4.0.deb
|
||||
dpkg -x elfparser_x86_64_1.4.0.deb .
|
||||
mkdir -p bin
|
||||
mv usr/local/bin/elfparser bin/
|
||||
rm -rf usr
|
3
elfparser/install-root
Executable file
3
elfparser/install-root
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get install -y libqt5widgets5
|
Loading…
Add table
Reference in a new issue