Conversation

TIL you can't run executables from your app directory in Android SDK 30+, but you can just bump down to targeting ~28 and it works fine - due to selinux constraints on `untrusted_app`s
1
45
This will be interesting to see what protectors / packers due when backward compatible support for this goes away -- it will be significantly hardware for them to "unwind" their obfuscation/breakages
1
6
Replying to
It's still possible to do it for memory mapped from files (execmem) and it's still possible to map app data (app_data_file) as executable for now. Being able to map app data as executable should eventually go away but it's hard to see them being able to drop execmem due to ART.
Replying to and
If they hadn't taken the path of going back towards JIT compilation, they could permit execmem only in the isolatedProcess sandbox to allow browsers, etc. to work while not permitting it for processes in the normal app sandbox.
1
1
Replying to
Right, it looks like this is where it's headed, they're just trying to be "kind" potentially? Language in the Play Store TOS basically says f' off to executing anything not in your apk, us I imagine some day (in the distant future) it will all break "without warning" 🙃
1
Show replies