From 729c5598b3fcb85e52c62bf19d28a7db2647659d Mon Sep 17 00:00:00 2001 From: dusoleil Date: Fri, 11 Mar 2022 09:15:31 -0500 Subject: sploit: add r2 funcionality to rev module Add an r2 module with several helper functions that do a number of simple reverse engineering tasks to aid in writing simple sploit scripts. The functions in this module invoke radare2 to accomplish their tasks. Signed-off-by: dusoleil --- sploit/rev/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sploit/rev/__init__.py') diff --git a/sploit/rev/__init__.py b/sploit/rev/__init__.py index c489b98..b6a73a2 100644 --- a/sploit/rev/__init__.py +++ b/sploit/rev/__init__.py @@ -1,4 +1,5 @@ from . import ( - ldd + ldd, + r2, ) -- cgit v1.2.3