ali
ali

Reputation: 161

root user can access internal storage on Android?

If we keep files(pdf, epub, jpeg etc) under application's data folder on run time, is it possible to access them via root user or any other hack by somebody else?

Upvotes: 4

Views: 4019

Answers (3)

user370305
user370305

Reputation: 109237

Yes, it(internal storage) can accessible if your device is root. Then Anyone can access it.

Upvotes: 1

cvaldemar
cvaldemar

Reputation: 6993

Yes. As root you have unrestricted access to anything on the device. Even an applications runtime data, you can retrieve anything easily. An example would be to connect your device and retrieve a file by;

$ adb pull /path/to/remote/file localfile

Upvotes: 4

molnarm
molnarm

Reputation: 10031

Yes. Users with root rights can access anything.

Upvotes: 2

Related Questions