Android/Python

This commit is contained in:
Paul White
2014-01-12 17:45:11 -05:00
parent ba02596cd2
commit f55af99e4d
2 changed files with 46 additions and 1 deletions

View File

@@ -1,3 +1,36 @@
# Place Holder
# Android
##Files to grab
###Text Messages (Needs Root):
```
/data/data/com.android.providers/telephony/databases/mmssms.db
/data/data/com.android.providers.telephony/databases/mmssms.db
```
###Contacts (Needs Root):
```
/data/data/android.providers.contacts/databases
```
###Local System Settings:
```
/data/local.prop
```
If you can write to this file the following line will grant root:
```
echo "ro.kernel.qemu=1" > /data/local.prop
```
###Device Settings:
```
/system/build.prop
```
Content coming. Feel free to submit ;-)