You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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:
Instead of having the original name as reference for the runtime code
It also renames the parameter type
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.
The text was updated successfully, but these errors were encountered: