'How to find which database is an app using? And where can we find it
An app is stealing my contact details from phone, is there any way I can access its database and remove my contact list from there?
Solution 1:[1]
No, you can't
Most of the databases require authentication in order to access it. Without a key, you can't read/ write data from it. Moreover, a key (for example, the client key) may only allow write access. If that database, which you've mentioned, was properly set up, it will be impossible to delete or even read your contact detail from it.
However, If you are just trying to find out what database it is using, you can
- Decomplie the app: Find out how the app work and where your contact list was sent
- Use a packet analyzer: Monitor your network and see what (in your case, your contact list) is sent and where it is sent to
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
