├── README.md ├── __pycache__ └── analysis.cpython-36.pyc ├── analysis.py ├── log.txt ├── monitor.py └── scripts ├── Activity └── ActivityManager.js ├── Broadcast └── BroadcastReceiver.js ├── Content └── ContentResolver.js ├── Crypto ├── Cipher.js └── MessageDigest.js ├── Device └── DevicePolicyManager.js ├── File └── File.js ├── Location └── LocationManager.js ├── Native └── libc.js ├── Network ├── AbstractHttpClient.js └── Url.js ├── Package └── ApplicationPackageManager.js ├── Runtime └── Runtime.js └── Telephony ├── SmsManager.js └── TelephonyManager.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/analysis.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/__pycache__/analysis.cpython-36.pyc -------------------------------------------------------------------------------- /analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/analysis.py -------------------------------------------------------------------------------- /log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/log.txt -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/monitor.py -------------------------------------------------------------------------------- /scripts/Activity/ActivityManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Activity/ActivityManager.js -------------------------------------------------------------------------------- /scripts/Broadcast/BroadcastReceiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Broadcast/BroadcastReceiver.js -------------------------------------------------------------------------------- /scripts/Content/ContentResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Content/ContentResolver.js -------------------------------------------------------------------------------- /scripts/Crypto/Cipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Crypto/Cipher.js -------------------------------------------------------------------------------- /scripts/Crypto/MessageDigest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Crypto/MessageDigest.js -------------------------------------------------------------------------------- /scripts/Device/DevicePolicyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Device/DevicePolicyManager.js -------------------------------------------------------------------------------- /scripts/File/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/File/File.js -------------------------------------------------------------------------------- /scripts/Location/LocationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Location/LocationManager.js -------------------------------------------------------------------------------- /scripts/Native/libc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Native/libc.js -------------------------------------------------------------------------------- /scripts/Network/AbstractHttpClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Network/AbstractHttpClient.js -------------------------------------------------------------------------------- /scripts/Network/Url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Network/Url.js -------------------------------------------------------------------------------- /scripts/Package/ApplicationPackageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Package/ApplicationPackageManager.js -------------------------------------------------------------------------------- /scripts/Runtime/Runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Runtime/Runtime.js -------------------------------------------------------------------------------- /scripts/Telephony/SmsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Telephony/SmsManager.js -------------------------------------------------------------------------------- /scripts/Telephony/TelephonyManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdek42/AppMonitor/HEAD/scripts/Telephony/TelephonyManager.js --------------------------------------------------------------------------------