How Do I Get To App Data On Android
Often companies developing ParentalControl or DLP solutions require access to private data from software, installed on Android devices. For example, messages from Skype/KIK/Viber, etc., or even an access to a browsing history are both good examples of such tasks. By default (and this is what is used most often due to security) all Android apps save data in a so-called
Sandbox – a storage area which other applications cannot access. And if an app doesn't provide an API to get the data (or simply places the data in memory card where other applications can access it), then this data seemingly cannot be accessed. In this article I want to show one simple and fairly elegant way to access private data of third party applications.
Contents:
Proposed solution
Received results
Advantages of this approach
Disadvantages of this approach
A word of warning
Proposed solution
The main idea behind the solution is very simple – to parse a layout tree of an active page and extract the necessary data.
One caveat is that, while this solution works well starting with Android 4.3 and older (including the latest Android N), to get a clean data without junk you will need to take your time to study each target application. There is no need for ROOT-access, since with it you would be able to read directly from a sandbox.
I will explain this approach based on one particular task: writing an Android app that can be used to monitor:
- Firefox browser history on Android 6.0 (public API for this was closed even for built-in browser)
- Skype instant messages (there was no official way to get access to them)
Basically, both tasks are very similar, since you're trying to achieve the same thing, e.g., get access to personal data.
Android has a so called AccessibilityService – a built-in service and a set of API to develop applications for people with disabilities (mostly, people with eyesight and hearing problems).
This service is allowed to
- Subscribe to screen state change events, such as when screen focuses on a particular element of layout, when text changes, when image scrolls, etc.
- Read all content from the active screen
Therefore, our task is fairly simple – to write our own app similar to AccessibilityService, that will track any changes on the screen and react to them accordingly (for example, by saving all accessed web link to browsing history, or writing Skype messages into a log )
Let's start:
- Create service class in Java as always
- Declare our service in the manifest as an AccessibilityService and specify the config file for it. In the end, record about a service should look like this:
<service android:name=".MyAccessibilityService" android:label="petrov_accessibility_sniffer" android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"> <intent-filter> <action android:name="android.accessibilityservice.AccessibilityService"/> </intent-filter> <meta-data android:name="android.accessibilityservice" android:resource="@xml/serviceconfig"/> </service>
- Create configuration file with parameters that our service should use (
<project_dir>/res/xml/serviceconfig.xml
)
<accessibility-service android:description="@string/acessibility_description" android:accessibilityEventTypes="typeAllMask" android:accessibilityFeedbackType="feedbackGeneric" android:accessibilityFlags="flagDefault|flagIncludeNotImportantViews|flagReport ViewIds|flagRequestEnhancedWebAccessibility|flagRetrieveInteractiveWindows" android:canRetrieveWindowContent="true" xmlns:android="http://schemas.android.com/apk/res/android" />
Here let us look into more detail, since these attributes show the system what kind of data we want to receive in our service.
android:accessibilityEventTypes – it states that we want to receive all accessibility events, because it's important to not miss anything ;)
android:accessibilityFlags – here we tell the system that we want to receive all the data about information displayed on the screen: layout element id, insignificant View, basically, anything.
android:canRetrieveWindowContent – this is the most important attribute! It prompts the system to provide us with the layout three with all the data.
- Create inheritance from AccessibilityService in Java code. Implement onAccessibilityEvent and onInterrupt (you can leave this empty). onAccessibilityEvent – is exactly the method that the system itself will call to store View tree in the parameters.
Now, the rest is simple. We receive an AccessibilityEvent in the onAccessibilityEven parameter.
Here we can find out the name of application that initiated the event (getPackageName) and what exactly happened (getEventType), which is something that can prove useful when filtering events.
Secondly, we can call root tree node (getSource) and go through the whole tree (getChild, getChildCount), gathering information about each element of the tree, including its class (getClassName), id (getViewIdResourceName), and even text (getText). getText method is exactly what returns messages from instant messengers or URLs from browsers.
The main difficulty in gathering the data lies in the necessity to filer various tree nodes based on the class name, id, nesting, and maybe some other criteria, specific to a particular applications.
Received results
In this example, I went across the screen layout three to search for address bar simply by the element id. I also went through it to see the structure of the screen tree and dicover a pattern that will allow me to gather Skype messages.
For example, if user opens Skype and sees the following screen:
Then our parser can take it apart and get the messages (you can identify incoming and outgoing ones based on the structure of the tree)
Below is an example of our application log for this screen:
Advantages of this approach
- This approach is very simple and reliable!
- We can use this approach to both capture user data (Skype, Viber, Twitter, WhatsApp, Facebook, etc.) and control user actions (for example, prohibit user from changing particular device settings).
- No need for any permissions in manifest.
- Public API that potentially doesn't prohibit distribution via Google Play (There is at least one other app that I know off that uses this approach to get browser history – Qustodio).
- AccessibilityService is still active even after reboot.
- There is a potential for controlling the screen of the device.
Disadvantages of this approach
- Since this approach relies on screen parsing, there is a need for an ability to parse the screen and identify the necessary information. This will heavily vary based on the application you decide to target.
- The need to create logic for storing data, since different pieces can be accessed at different times (for example, random scroll of the Skype chat, or switching between different chats).
- Parsing large volumes of data can affect battery life. You need to carefully set time intervals between receiving events, and correctly filter target applications for monitoring.
- User needs to explicitly (only once) activate AccessibilityService in the device settings (Settings → Accessibility → $TARGET_ACCESSIBILITY_SERVICE$ → Enable).
- When target apps are updated you may need to update your parser. If the structure of the layout three changes, or even if developer simply decides to change controls id, you will need to adapt the logic of your parser to these changes.
A word of warning
Android security policy directly states that access to private data can be illegal, which puts certain limitations on gathering such data, including the possibility of being prosecuted by law. Therefore, use this method to obtain data consciously and thoughtfully and make sure that you abide by laws and respect privacy of others.
Get the project source code: GitHub repository.
How Do I Get To App Data On Android
Source: https://www.apriorit.com/dev-blog/429-access-app-data-on-android-no-root
Posted by: wilsonfole1966.blogspot.com
0 Response to "How Do I Get To App Data On Android"
Post a Comment