## Check Debugging
```
adb shell run-as <package-name>
#if the application is not buggable the below error message will be appears.
#run-as: Package 'com.example' is not debuggable
```
## Unrestricted Backup
```
adb shell dumpsys package <package-name> | findstr flags
#flags=[ HAS_CODE ALLOW_CLEAR_USER_DATA ALLOW_BACKUP ]
```
## Permission Analysis
```
adb shell dumpsys package <package-name> | findstr "permission"
# this command will list all the permissions of the app
```
## External Storage Analysis
```
adb shell exec ls /sdcard/Android/data/com.package-name.app/
# this will list the files and folders in the applciation external storage
```
##