blob: 5c3289dc4f4927536192e5717696e8e3ad97b32e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# delf
delf is an ELF dump tool.<br/>
## Requirements
You need python3 and `capstone`. If you don't have capstone you can get it by:<br/>
```bash
pip install capstone
```
Your terminal needs to support ASCII escape sequences.<br/>
## Options
For a list of available options just run `delf -h`. Here's what you'll get:<br/>
```bash
usage: delf [-h] [--dbg] [--obj OBJ] [--header] [--symboltable] [--phdrs]
[--shdrs] [--symbolindex] [--stentries] [--objcode] [--test]
[--test2] [--funcs] [--objs] [--dynsym] [--dlpath] [--phdynent]
[--section SECTION] [--dumpfunc DUMPFUNC]
[--dumpfuncasm DUMPFUNCASM] [--textasm] [--dynsecents] [--reladyn]
[--relaplt] [--rodata] [--disass DISASS]
optional arguments:
-h, --help show this help message and exit
--dbg debug
--obj OBJ path to the executbale, shared object or object you
want to load in bruiser
--header dump headers
--symboltable dump symbol table
--phdrs dump program haeders
--shdrs dump section haeders
--symbolindex dump symbol index
--stentries dump section table entries
--objcode dump objects
--test test switch
--test2 test switch 2
--funcs dump functions
--objs dump objects
--dynsym dump dynamic symbol table
--dlpath dump dynamic linker path
--phdynent dump ph PT_DYNAMIC entries
--section SECTION dump a section
--dumpfunc DUMPFUNC dump a functions machine code
--dumpfuncasm DUMPFUNCASM
dump a functions assembly code
--textasm disassemble the text section
--dynsecents dynamic section entries
--reladyn .rela.dyn entries
--relaplt .rela.plt entries
--rodata dump .rodata
--disass DISASS disassemblt a section
```
## Feature Request
If there is something you need delf to do, make an issue and I'll take a look.<br/>
## TODO
delf does not support ELF32. I'll write that in whenver I get the tiem to work on delf<br/>
|