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
I've attached sample for these cases, where app-debug1.zip is a normal access and app-debug2.zip is a dProtect way. Samples also prints myArr via System.out, and both are the same at the runtime.
Also another small issue with arrays, If an array created with bigger size than filled data for example:
Issue details
dProtect uses somewhat unconvential field access which results in incorrect decompilation.
Instead of normal field access instruction order where sput instruction is at the end after array filled with data:
it first moves field into newly generated array register like following:
And we get following decompilation which is not complete:
Instead of:
I've attached sample for these cases, where app-debug1.zip is a normal access and app-debug2.zip is a dProtect way. Samples also prints myArr via System.out, and both are the same at the runtime.
Also another small issue with arrays, If an array created with bigger size than filled data for example:
Jadx decompiles this to following:
Instead of :
Jadx produces same output for the cases where length is 1 or 4.
We can fill rest of the array with default element of the array type.
Relevant log output or stacktrace
No response
Provide sample and class/method full name
app-debug2.zip
app-debug1.zip
Jadx version
dev
The text was updated successfully, but these errors were encountered: