Techbypass always tries to help you to learn about recent vulnerabilities and exploitations.

Learn and share your security findings and help others to secure their digital assets.

Need any help mail to [email protected]

0 votes
How to copy the android application's data to your machine?
Copy db file with adb pull results in 'permission denied' error.
by (271 points)

1 Answer

0 votes

To copy the android application data from your machine, you need a rooted device.

You can root your device using this https://techbypass.com/98/how-to-install-magisk-and-flash-android-device

The copy command:

 adb shell "su -c cat /data/data/com.android.providers.contacts/databases/contacts2.db" > contacts2.db

by (271 points)
...