mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
Fix hex conversion
This commit is contained in:
+1
-1
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user