GDA-android-reversing-Tool
GDA-android-reversing-Tool copied to clipboard
Simple bug to fix when executing frida code.
- Let's say I rename a custom class. If I use the frida menu to perform any methods (hook, execute, etc) on a method that uses the renamed class as a parameter. For example:
class 14E { // Rename it to My14E
}
Instead of having the original name as reference for the runtime code
function A00('X.14E') {
}
It also renames the parameter type
function A00('X.My14E') {
}
but it shouldn't do that. It must keep the original name otherwise the script will lose reference when executing the original apk on the device.
Which will throw an error in execution obviously.
- If I rename a method inside a class, the callers of that method on other classes doesn't show the renamed name. It will show the original name of the method.
- you must use the original name, renaming did not change the apk file.
- try to refresh code.