diff options
author | dusoleil <howcansocksbereal@gmail.com> | 2022-03-11 10:15:35 -0500 |
---|---|---|
committer | dusoleil <howcansocksbereal@gmail.com> | 2022-03-13 23:27:30 -0400 |
commit | 13a1931d7b765009d35c72594310f4a5abcacff4 (patch) | |
tree | 55585a1e14fe54f00acf3ad2fdacff6c5c43e57c /sploit/rev/__init__.py | |
parent | 63b9139833b847000fe6cc76fad07f6f6866e416 (diff) | |
download | nsploit-13a1931d7b765009d35c72594310f4a5abcacff4.tar.gz nsploit-13a1931d7b765009d35c72594310f4a5abcacff4.zip |
sploit: add ELF helper class to rev
Create a class which encapsulates some basic information about an ELF
file and provides a convenient interface for basic reverse engineering.
In particular, ELF automatically loads the symbol table of the given elf
file and recursively creates ELF objects for any linked libraries.
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'sploit/rev/__init__.py')
-rw-r--r-- | sploit/rev/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sploit/rev/__init__.py b/sploit/rev/__init__.py index b6a73a2..43cee7b 100644 --- a/sploit/rev/__init__.py +++ b/sploit/rev/__init__.py @@ -1,5 +1,6 @@ from . import ( ldd, r2, + elf, ) |