From 13a1931d7b765009d35c72594310f4a5abcacff4 Mon Sep 17 00:00:00 2001 From: dusoleil Date: Fri, 11 Mar 2022 10:15:35 -0500 Subject: 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 --- sploit/rev/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'sploit/rev/__init__.py') 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, ) -- cgit v1.2.3