Android permissions and linux permissions

Are the rights to android (the ones you request in the manifest and represent during installation) the same with the linux permissions that the root user gets on the root phone?

More precisely: if I have root on my phone and I have an application that wants to make a call but has not requested permission for this in the manifest, will the call succeed or the application crashes?

Thank.

+4
source share
3 answers

Some Android permissions are implemented as Linux permissions (for example, External Storage or Network, each membership in a Unix group that is allowed to perform these operations), while others are fully implemented in Android layers.

"Root" , Android ( Android) root. , , , , , - root, . , - , Linux API Linux, , , /, SELinux one ( , , , SELinux ).

, API Android, root , , , root. , API- Android , .

root- .apk ( ), , , .apk, .

+4

Android. , "-", , AndroidManifest, .

.

+2

. - , , , "androidmanifest", Android, java . , Android OpenSource. , Android, Android, , ti Linux, ( ), , android 5, SELinux .

In fairness, it is worth saying that all these mechanisms work together to enhance the security of Android as a whole.

0
source

All Articles