From 7fc5ed97745da4f85e92f014ab934712777e6cab Mon Sep 17 00:00:00 2001 From: Karl Trygve Kalleberg Date: Sat, 14 Dec 2013 22:32:06 +0100 Subject: [PATCH] Fix hex conversion --- src/frida.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frida.py b/src/frida.py index f493f04..fe3fd1f 100644 --- a/src/frida.py +++ b/src/frida.py @@ -206,7 +206,7 @@ Module.enumerateExports(\"%s\", { } }); """ % self.name) - return [Export(export["name"], int(export["address"]), 16) for export in _execute_script(script)] + return [Export(export["name"], int(export["address"], 16)) for export in _execute_script(script)] """ @param protection example '--x'