James Stevenson commited on
Commit
3c086ba
·
1 Parent(s): e656c16

initial commit

Browse files
DroidDetective/.github/FUNDING.yml ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # These are supported funding model platforms
2
+
3
+ ko_fi: JamesStevenson
DroidDetective/DroidDetective.py ADDED
@@ -0,0 +1,590 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json
2
+ import os
3
+ import pickle
4
+ import sys
5
+ from datetime import datetime
6
+
7
+ import pandas as pd
8
+ from androguard.misc import AnalyzeAPK
9
+ from sklearn import metrics
10
+ from sklearn.ensemble import RandomForestClassifier
11
+ from sklearn.model_selection import train_test_split
12
+
13
+
14
+ class APK_Analyser():
15
+ '''
16
+ Main class for analysing Android APK, using a random forest classifier for identifying if malware
17
+ '''
18
+
19
+ # This list is used to define all colums being analysed
20
+ colums = ['android.permission.ACCESS_ALL_DOWNLOADS',
21
+ 'android.permission.ACCESS_BLUETOOTH_SHARE',
22
+ 'android.permission.ACCESS_CACHE_FILESYSTEM',
23
+ 'android.permission.ACCESS_CHECKIN_PROPERTIES',
24
+ 'android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY',
25
+ 'android.permission.ACCESS_DOWNLOAD_MANAGER',
26
+ 'android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED',
27
+ 'android.permission.ACCESS_DRM_CERTIFICATES',
28
+ 'android.permission.ACCESS_EPHEMERAL_APPS',
29
+ 'android.permission.ACCESS_FM_RADIO',
30
+ 'android.permission.ACCESS_INPUT_FLINGER',
31
+ 'android.permission.ACCESS_KEYGUARD_SECURE_STORAGE',
32
+ 'android.permission.ACCESS_LOCATION_EXTRA_COMMANDS',
33
+ 'android.permission.ACCESS_MOCK_LOCATION',
34
+ 'android.permission.ACCESS_MTP',
35
+ 'android.permission.ACCESS_NETWORK_CONDITIONS',
36
+ 'android.permission.ACCESS_NETWORK_STATE',
37
+ 'android.permission.ACCESS_NOTIFICATIONS',
38
+ 'android.permission.ACCESS_NOTIFICATION_POLICY',
39
+ 'android.permission.ACCESS_PDB_STATE',
40
+ 'android.permission.ACCESS_SURFACE_FLINGER',
41
+ 'android.permission.ACCESS_VOICE_INTERACTION_SERVICE',
42
+ 'android.permission.ACCESS_VR_MANAGER',
43
+ 'android.permission.ACCESS_WIFI_STATE',
44
+ 'android.permission.ACCESS_WIMAX_STATE',
45
+ 'android.permission.ACCOUNT_MANAGER',
46
+ 'android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK',
47
+ 'android.permission.ASEC_ACCESS',
48
+ 'android.permission.ASEC_CREATE',
49
+ 'android.permission.ASEC_DESTROY',
50
+ 'android.permission.ASEC_MOUNT_UNMOUNT',
51
+ 'android.permission.ASEC_RENAME',
52
+ 'android.permission.AUTHENTICATE_ACCOUNTS',
53
+ 'android.permission.BACKUP',
54
+ 'android.permission.BATTERY_STATS',
55
+ 'android.permission.BIND_ACCESSIBILITY_SERVICE',
56
+ 'android.permission.BIND_APPWIDGET',
57
+ 'android.permission.BIND_CARRIER_MESSAGING_SERVICE',
58
+ 'android.permission.BIND_CARRIER_SERVICES',
59
+ 'android.permission.BIND_CHOOSER_TARGET_SERVICE',
60
+ 'android.permission.BIND_CONDITION_PROVIDER_SERVICE',
61
+ 'android.permission.BIND_CONNECTION_SERVICE',
62
+ 'android.permission.BIND_DEVICE_ADMIN',
63
+ 'android.permission.BIND_DIRECTORY_SEARCH',
64
+ 'android.permission.BIND_DREAM_SERVICE',
65
+ 'android.permission.BIND_INCALL_SERVICE',
66
+ 'android.permission.BIND_INPUT_METHOD',
67
+ 'android.permission.BIND_INTENT_FILTER_VERIFIER',
68
+ 'android.permission.BIND_JOB_SERVICE',
69
+ 'android.permission.BIND_KEYGUARD_APPWIDGET',
70
+ 'android.permission.BIND_MIDI_DEVICE_SERVICE',
71
+ 'android.permission.BIND_NFC_SERVICE',
72
+ 'android.permission.BIND_NOTIFICATION_LISTENER_SERVICE',
73
+ 'android.permission.BIND_NOTIFICATION_RANKER_SERVICE',
74
+ 'android.permission.BIND_PACKAGE_VERIFIER',
75
+ 'android.permission.BIND_PRINT_RECOMMENDATION_SERVICE',
76
+ 'android.permission.BIND_PRINT_SERVICE',
77
+ 'android.permission.BIND_PRINT_SPOOLER_SERVICE',
78
+ 'android.permission.BIND_QUICK_SETTINGS_TILE',
79
+ 'android.permission.BIND_REMOTEVIEWS',
80
+ 'android.permission.BIND_REMOTE_DISPLAY',
81
+ 'android.permission.BIND_ROUTE_PROVIDER',
82
+ 'android.permission.BIND_RUNTIME_PERMISSION_PRESENTER_SERVICE',
83
+ 'android.permission.BIND_SCREENING_SERVICE',
84
+ 'android.permission.BIND_TELECOM_CONNECTION_SERVICE',
85
+ 'android.permission.BIND_TEXT_SERVICE',
86
+ 'android.permission.BIND_TRUST_AGENT',
87
+ 'android.permission.BIND_TV_INPUT',
88
+ 'android.permission.BIND_TV_REMOTE_SERVICE',
89
+ 'android.permission.BIND_VOICE_INTERACTION',
90
+ 'android.permission.BIND_VPN_SERVICE',
91
+ 'android.permission.BIND_VR_LISTENER_SERVICE',
92
+ 'android.permission.BIND_WALLPAPER',
93
+ 'android.permission.BLUETOOTH',
94
+ 'android.permission.BLUETOOTH_ADMIN',
95
+ 'android.permission.BLUETOOTH_MAP',
96
+ 'android.permission.BLUETOOTH_PRIVILEGED',
97
+ 'android.permission.BLUETOOTH_STACK',
98
+ 'android.permission.BRICK',
99
+ 'android.permission.BROADCAST_CALLLOG_INFO',
100
+ 'android.permission.BROADCAST_NETWORK_PRIVILEGED',
101
+ 'android.permission.BROADCAST_PACKAGE_REMOVED',
102
+ 'android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION',
103
+ 'android.permission.BROADCAST_SMS',
104
+ 'android.permission.BROADCAST_STICKY',
105
+ 'android.permission.BROADCAST_WAP_PUSH',
106
+ 'android.permission.android.permission.ACCESS_ALL_DOWNLOADS',
107
+ 'android.permission.CACHE_CONTENT',
108
+ 'android.permission.CALL_PRIVILEGED',
109
+ 'android.permission.CAMERA_DISABLE_TRANSMIT_LED',
110
+ 'android.permission.CAMERA_SEND_SYSTEM_EVENTS',
111
+ 'android.permission.CAPTURE_AUDIO_HOTWORD',
112
+ 'android.permission.CAPTURE_AUDIO_OUTPUT',
113
+ 'android.permission.CAPTURE_SECURE_VIDEO_OUTPUT',
114
+ 'android.permission.CAPTURE_TV_INPUT',
115
+ 'android.permission.CAPTURE_VIDEO_OUTPUT',
116
+ 'android.permission.CARRIER_FILTER_SMS',
117
+ 'android.permission.CHANGE_APP_IDLE_STATE',
118
+ 'android.permission.CHANGE_BACKGROUND_DATA_SETTING',
119
+ 'android.permission.CHANGE_COMPONENT_ENABLED_STATE',
120
+ 'android.permission.CHANGE_CONFIGURATION',
121
+ 'android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST',
122
+ 'android.permission.CHANGE_NETWORK_STATE',
123
+ 'android.permission.CHANGE_WIFI_MULTICAST_STATE',
124
+ 'android.permission.CHANGE_WIFI_STATE',
125
+ 'android.permission.CHANGE_WIMAX_STATE',
126
+ 'android.permission.CLEAR_APP_CACHE',
127
+ 'android.permission.CLEAR_APP_GRANTED_URI_PERMISSIONS',
128
+ 'android.permission.CLEAR_APP_USER_DATA',
129
+ 'android.permission.CONFIGURE_DISPLAY_COLOR_TRANSFORM',
130
+ 'android.permission.CONFIGURE_WIFI_DISPLAY',
131
+ 'android.permission.CONFIRM_FULL_BACKUP',
132
+ 'android.permission.CONNECTIVITY_INTERNAL',
133
+ 'android.permission.CONTROL_INCALL_EXPERIENCE',
134
+ 'android.permission.CONTROL_KEYGUARD',
135
+ 'android.permission.CONTROL_LOCATION_UPDATES',
136
+ 'android.permission.CONTROL_VPN',
137
+ 'android.permission.CONTROL_WIFI_DISPLAY',
138
+ 'android.permission.COPY_PROTECTED_DATA',
139
+ 'android.permission.CREATE_USERS',
140
+ 'android.permission.CRYPT_KEEPER',
141
+ 'android.permission.DELETE_CACHE_FILES',
142
+ 'android.permission.DELETE_PACKAGES',
143
+ 'android.permission.DEVICE_POWER',
144
+ 'android.permission.DIAGNOSTIC',
145
+ 'android.permission.DISABLE_KEYGUARD',
146
+ 'android.permission.DISPATCH_NFC_MESSAGE',
147
+ 'android.permission.DISPATCH_PROVISIONING_MESSAGE',
148
+ 'android.permission.DOWNLOAD_CACHE_NON_PURGEABLE',
149
+ 'android.permission.DUMP',
150
+ 'android.permission.DVB_DEVICE',
151
+ 'android.permission.EXPAND_STATUS_BAR',
152
+ 'android.permission.FACTORY_TEST',
153
+ 'android.permission.FILTER_EVENTS',
154
+ 'android.permission.FLASHLIGHT',
155
+ 'android.permission.FORCE_BACK',
156
+ 'android.permission.FORCE_STOP_PACKAGES',
157
+ 'android.permission.FRAME_STATS',
158
+ 'android.permission.FREEZE_SCREEN',
159
+ 'android.permission.GET_ACCOUNTS_PRIVILEGED',
160
+ 'android.permission.GET_APP_GRANTED_URI_PERMISSIONS',
161
+ 'android.permission.GET_APP_OPS_STATS',
162
+ 'android.permission.GET_DETAILED_TASKS',
163
+ 'android.permission.GET_INTENT_SENDER_INTENT',
164
+ 'android.permission.GET_PACKAGE_IMPORTANCE',
165
+ 'android.permission.GET_PACKAGE_SIZE',
166
+ 'android.permission.GET_PASSWORD',
167
+ 'android.permission.GET_PROCESS_STATE_AND_OOM_SCORE',
168
+ 'android.permission.GET_TASKS',
169
+ 'android.permission.GET_TOP_ACTIVITY_INFO',
170
+ 'android.permission.GLOBAL_SEARCH',
171
+ 'android.permission.GLOBAL_SEARCH_CONTROL',
172
+ 'android.permission.GRANT_RUNTIME_PERMISSIONS',
173
+ 'android.permission.HARDWARE_TEST',
174
+ 'android.permission.HDMI_CEC',
175
+ 'android.permission.INJECT_EVENTS',
176
+ 'android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS',
177
+ 'android.permission.INSTALL_LOCATION_PROVIDER',
178
+ 'android.permission.INSTALL_PACKAGES',
179
+ 'android.permission.INTENT_FILTER_VERIFICATION_AGENT',
180
+ 'android.permission.INTERACT_ACROSS_USERS',
181
+ 'android.permission.INTERACT_ACROSS_USERS_FULL',
182
+ 'android.permission.INTERNAL_SYSTEM_WINDOW',
183
+ 'android.permission.INTERNET',
184
+ 'android.permission.INVOKE_CARRIER_SETUP',
185
+ 'android.permission.KILL_BACKGROUND_PROCESSES',
186
+ 'android.permission.KILL_UID',
187
+ 'android.permission.LAUNCH_TRUST_AGENT_SETTINGS',
188
+ 'android.permission.LOCAL_MAC_ADDRESS',
189
+ 'android.permission.LOCATION_HARDWARE',
190
+ 'android.permission.LOOP_RADIO',
191
+ 'android.permission.MANAGE_ACCOUNTS',
192
+ 'android.permission.MANAGE_ACTIVITY_STACKS',
193
+ 'android.permission.MANAGE_APP_OPS_RESTRICTIONS',
194
+ 'android.permission.MANAGE_APP_TOKENS',
195
+ 'android.permission.MANAGE_CA_CERTIFICATES',
196
+ 'android.permission.MANAGE_DEVICE_ADMINS',
197
+ 'android.permission.MANAGE_DOCUMENTS',
198
+ 'android.permission.MANAGE_FINGERPRINT',
199
+ 'android.permission.MANAGE_MEDIA_PROJECTION',
200
+ 'android.permission.MANAGE_NETWORK_POLICY',
201
+ 'android.permission.MANAGE_NOTIFICATIONS',
202
+ 'android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS',
203
+ 'android.permission.MANAGE_SOUND_TRIGGER',
204
+ 'android.permission.MANAGE_USB',
205
+ 'android.permission.MANAGE_USERS',
206
+ 'android.permission.MANAGE_VOICE_KEYPHRASES',
207
+ 'android.permission.MASTER_CLEAR',
208
+ 'android.permission.MEDIA_CONTENT_CONTROL',
209
+ 'android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS',
210
+ 'android.permission.MODIFY_AUDIO_ROUTING',
211
+ 'android.permission.MODIFY_AUDIO_SETTINGS',
212
+ 'android.permission.MODIFY_CELL_BROADCASTS',
213
+ 'android.permission.MODIFY_DAY_NIGHT_MODE',
214
+ 'android.permission.MODIFY_NETWORK_ACCOUNTING',
215
+ 'android.permission.MODIFY_PARENTAL_CONTROLS',
216
+ 'android.permission.MODIFY_PHONE_STATE',
217
+ 'android.permission.MOUNT_FORMAT_FILESYSTEMS',
218
+ 'android.permission.MOUNT_UNMOUNT_FILESYSTEMS',
219
+ 'android.permission.MOVE_PACKAGE',
220
+ 'android.permission.NET_ADMIN',
221
+ 'android.permission.NET_TUNNELING',
222
+ 'android.permission.NFC',
223
+ 'android.permission.NFC_HANDOVER_STATUS',
224
+ 'android.permission.NOTIFY_PENDING_SYSTEM_UPDATE',
225
+ 'android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS',
226
+ 'android.permission.OEM_UNLOCK_STATE',
227
+ 'android.permission.OVERRIDE_WIFI_CONFIG',
228
+ 'android.permission.PACKAGE_USAGE_STATS',
229
+ 'android.permission.PACKAGE_VERIFICATION_AGENT',
230
+ 'android.permission.PACKET_KEEPALIVE_OFFLOAD',
231
+ 'android.permission.PEERS_MAC_ADDRESS',
232
+ 'android.permission.PERFORM_CDMA_PROVISIONING',
233
+ 'android.permission.PERFORM_SIM_ACTIVATION',
234
+ 'android.permission.PERSISTENT_ACTIVITY',
235
+ 'android.permission.PROCESS_CALLLOG_INFO',
236
+ 'android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION',
237
+ 'android.permission.PROVIDE_TRUST_AGENT',
238
+ 'android.permission.QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT',
239
+ 'android.permission.READ_BLOCKED_NUMBERS',
240
+ 'android.permission.READ_DREAM_STATE',
241
+ 'android.permission.READ_FRAME_BUFFER',
242
+ 'android.permission.READ_INPUT_STATE',
243
+ 'android.permission.READ_INSTALL_SESSIONS',
244
+ 'android.permission.READ_LOGS',
245
+ 'android.permission.READ_NETWORK_USAGE_HISTORY',
246
+ 'android.permission.READ_OEM_UNLOCK_STATE',
247
+ 'android.permission.READ_PRECISE_PHONE_STATE',
248
+ 'android.permission.READ_PRIVILEGED_PHONE_STATE',
249
+ 'android.permission.READ_PROFILE',
250
+ 'android.permission.READ_SEARCH_INDEXABLES',
251
+ 'android.permission.READ_SOCIAL_STREAM',
252
+ 'android.permission.READ_SYNC_SETTINGS',
253
+ 'android.permission.READ_SYNC_STATS',
254
+ 'android.permission.READ_USER_DICTIONARY',
255
+ 'android.permission.READ_WIFI_CREDENTIAL',
256
+ 'android.permission.REAL_GET_TASKS',
257
+ 'android.permission.REBOOT',
258
+ 'android.permission.RECEIVE_BLUETOOTH_MAP',
259
+ 'android.permission.RECEIVE_BOOT_COMPLETED',
260
+ 'android.permission.RECEIVE_DATA_ACTIVITY_CHANGE',
261
+ 'android.permission.RECEIVE_EMERGENCY_BROADCAST',
262
+ 'android.permission.RECEIVE_MEDIA_RESOURCE_USAGE',
263
+ 'android.permission.RECEIVE_STK_COMMANDS',
264
+ 'android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE',
265
+ 'android.permission.RECOVERY',
266
+ 'android.permission.REGISTER_CALL_PROVIDER',
267
+ 'android.permission.REGISTER_CONNECTION_MANAGER',
268
+ 'android.permission.REGISTER_SIM_SUBSCRIPTION',
269
+ 'android.permission.REGISTER_WINDOW_MANAGER_LISTENERS',
270
+ 'android.permission.REMOTE_AUDIO_PLAYBACK',
271
+ 'android.permission.REMOVE_DRM_CERTIFICATES',
272
+ 'android.permission.REMOVE_TASKS',
273
+ 'android.permission.REORDER_TASKS',
274
+ 'android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS',
275
+ 'android.permission.REQUEST_INSTALL_PACKAGES',
276
+ 'android.permission.RESET_FINGERPRINT_LOCKOUT',
277
+ 'android.permission.RESET_SHORTCUT_MANAGER_THROTTLING',
278
+ 'android.permission.RESTART_PACKAGES',
279
+ 'android.permission.RETRIEVE_WINDOW_CONTENT',
280
+ 'android.permission.RETRIEVE_WINDOW_TOKEN',
281
+ 'android.permission.REVOKE_RUNTIME_PERMISSIONS',
282
+ 'android.permission.SCORE_NETWORKS',
283
+ 'android.permission.SEND_CALL_LOG_CHANGE',
284
+ 'android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS',
285
+ 'android.permission.SEND_RESPOND_VIA_MESSAGE',
286
+ 'android.permission.SEND_SMS_NO_CONFIRMATION',
287
+ 'android.permission.SERIAL_PORT',
288
+ 'android.permission.SET_ACTIVITY_WATCHER',
289
+ 'android.permission.SET_ALWAYS_FINISH',
290
+ 'android.permission.SET_ANIMATION_SCALE',
291
+ 'android.permission.SET_DEBUG_APP',
292
+ 'android.permission.SET_INPUT_CALIBRATION',
293
+ 'android.permission.SET_KEYBOARD_LAYOUT',
294
+ 'android.permission.SET_ORIENTATION',
295
+ 'android.permission.SET_POINTER_SPEED',
296
+ 'android.permission.SET_PREFERRED_APPLICATIONS',
297
+ 'android.permission.SET_PROCESS_LIMIT',
298
+ 'android.permission.SET_SCREEN_COMPATIBILITY',
299
+ 'android.permission.SET_TIME',
300
+ 'android.permission.SET_TIME_ZONE',
301
+ 'android.permission.SET_WALLPAPER',
302
+ 'android.permission.SET_WALLPAPER_COMPONENT',
303
+ 'android.permission.SET_WALLPAPER_HINTS',
304
+ 'android.permission.SHUTDOWN',
305
+ 'android.permission.SIGNAL_PERSISTENT_PROCESSES',
306
+ 'android.permission.START_ANY_ACTIVITY',
307
+ 'android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY',
308
+ 'android.permission.START_TASKS_FROM_RECENTS',
309
+ 'android.permission.STATUS_BAR',
310
+ 'android.permission.STATUS_BAR_SERVICE',
311
+ 'android.permission.STOP_APP_SWITCHES',
312
+ 'android.permission.STORAGE_INTERNAL',
313
+ 'android.permission.SUBSCRIBED_FEEDS_READ',
314
+ 'android.permission.SUBSCRIBED_FEEDS_WRITE',
315
+ 'android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME',
316
+ 'android.permission.SYSTEM_ALERT_WINDOW',
317
+ 'android.permission.TABLET_MODE',
318
+ 'android.permission.TEMPORARY_ENABLE_ACCESSIBILITY',
319
+ 'android.permission.TETHER_PRIVILEGED',
320
+ 'android.permission.TRANSMIT_IR',
321
+ 'android.permission.TRUST_LISTENER',
322
+ 'android.permission.TV_INPUT_HARDWARE',
323
+ 'android.permission.TV_VIRTUAL_REMOTE_CONTROLLER',
324
+ 'android.permission.UPDATE_APP_OPS_STATS',
325
+ 'android.permission.UPDATE_CONFIG',
326
+ 'android.permission.UPDATE_DEVICE_STATS',
327
+ 'android.permission.UPDATE_LOCK',
328
+ 'android.permission.UPDATE_LOCK_TASK_PACKAGES',
329
+ 'android.permission.USER_ACTIVITY',
330
+ 'android.permission.USE_CREDENTIALS',
331
+ 'android.permission.VIBRATE',
332
+ 'android.permission.WAKE_LOCK',
333
+ 'android.permission.WRITE_APN_SETTINGS',
334
+ 'android.permission.WRITE_BLOCKED_NUMBERS',
335
+ 'android.permission.WRITE_DREAM_STATE',
336
+ 'android.permission.WRITE_GSERVICES',
337
+ 'android.permission.WRITE_MEDIA_STORAGE',
338
+ 'android.permission.WRITE_PROFILE',
339
+ 'android.permission.WRITE_SECURE_SETTINGS',
340
+ 'android.permission.WRITE_SETTINGS',
341
+ 'android.permission.WRITE_SMS',
342
+ 'android.permission.WRITE_SOCIAL_STREAM',
343
+ 'android.permission.WRITE_SYNC_SETTINGS',
344
+ 'android.permission.WRITE_USER_DICTIONARYCACHE_CONTENT',
345
+ 'android.permission.WRITE_EXTERNAL_STORAGE',
346
+ 'android.permission.READ_EXTERNAL_STORAGE',
347
+ 'android.permission.WRITE_USER_DICTIONARY',
348
+ 'other_permission',
349
+ 'num_of_permissions',
350
+ 'is_malware']
351
+ # Defines the Random Forest model
352
+ model = None
353
+
354
+ def unpack_apk(self, apk_path):
355
+ '''
356
+ A function used for extracting ifnormation from an APK file
357
+ :param apk_path: the path to the APK
358
+ :return: A dictionary of APK data
359
+ '''
360
+ a, d, dx = AnalyzeAPK(apk_path)
361
+ info_data = {
362
+ "package_name": a.get_app_name(),
363
+ "package": a.get_package(),
364
+ "icon": a.get_app_icon(),
365
+ "permissions": a.get_permissions(),
366
+ "activities": a.get_activities(),
367
+ "android_version_code": a.get_androidversion_code(),
368
+ "android_version_name": a.get_androidversion_name(),
369
+ "min_sdk_version": a.get_min_sdk_version(),
370
+ "max_sdk_version": a.get_max_sdk_version(),
371
+ "target_sdk_version": a.get_target_sdk_version(),
372
+ "effective_sdk_version": a.get_effective_target_sdk_version()
373
+ }
374
+
375
+ return info_data
376
+
377
+ def train_model(self, malware_apks_folder_path, normal_apks_folder_path):
378
+ '''
379
+ Trains the random forest model by getting APKs known as normal and known as malware and extracting the
380
+ defined data from them.
381
+ :param malware_apks_folder_path: a folder containing malware APKs
382
+ :param normal_apks_folder_path: a folder containing normal APKs
383
+ '''
384
+
385
+ data_from_apks = []
386
+
387
+ # Get normal APKs
388
+ for subdir, dirs, files in os.walk(normal_apks_folder_path):
389
+ for filename in files:
390
+ try:
391
+ full_path = os.path.join(subdir, filename)
392
+ print(full_path)
393
+ if filename.endswith(".apk"):
394
+ apk_data = self.unpack_apk(full_path)
395
+ list_of_apk_data = self.apk_variables_to_df_friendly_list(apk_data, is_malware=0)
396
+ data_from_apks.append(list_of_apk_data)
397
+ except:
398
+ print("Failed on file {}".format(filename))
399
+
400
+ # Get malware APKs
401
+ for subdir, dirs, files in os.walk(malware_apks_folder_path):
402
+ for filename in files:
403
+ try:
404
+ full_path = os.path.join(subdir, filename)
405
+ print(full_path)
406
+ if filename.endswith(".apk"):
407
+ apk_data = self.unpack_apk(full_path)
408
+ list_of_apk_data = self.apk_variables_to_df_friendly_list(apk_data, is_malware=1)
409
+ data_from_apks.append(list_of_apk_data)
410
+ except:
411
+ print("Failed on file {}".format(filename))
412
+
413
+ # create dataframe
414
+ df = pd.DataFrame(columns=self.colums)
415
+ for iterator in range(0, len(data_from_apks)):
416
+ df.loc[iterator] = data_from_apks[iterator]
417
+
418
+ feature_data = df
419
+ if "ID" in feature_data.keys():
420
+ feature_data.drop(feature_data.columns[0], axis=1, inplace=True)
421
+ feature_data.reset_index(drop=True, inplace=True)
422
+
423
+ y = feature_data[['is_malware']] # Labels
424
+ X = feature_data.drop(axis=1, labels=['is_malware']) # Features
425
+
426
+ # Split dataset into training set and test set
427
+ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2) # 80% training and 20% test
428
+
429
+ # Create a Gaussian Classifier
430
+ random_forest = RandomForestClassifier(n_estimators=100, max_depth=50, oob_score=True)
431
+
432
+ # Train the model using the training sets y_pred=random_forest.predict(X_test)
433
+ random_forest.fit(X_train, y_train.values.ravel())
434
+
435
+ y_pred = random_forest.predict(X_test)
436
+
437
+ # Model Accuracy, how often is the classifier correct?
438
+ self.accuracy = metrics.accuracy_score(y_test, y_pred)
439
+ self.recall = metrics.recall_score(y_test, y_pred)
440
+ self.precision = metrics.precision_score(y_test, y_pred)
441
+ self.f_measure = metrics.f1_score(y_test, y_pred)
442
+
443
+ print("Accuracy: {}".format(self.accuracy))
444
+ print("Recall: {}".format(self.recall))
445
+ print("Precision: {}".format(self.precision))
446
+ print("F-Measure: {}".format(self.f_measure))
447
+
448
+ self.model = random_forest
449
+
450
+ self.original_name = "model"
451
+ self.creation_date = datetime.today().strftime('%Y-%m-%d')
452
+
453
+ # write model and accuracy to file to file
454
+ model_data = {"model": self.model,
455
+ "original_name": self.original_name,
456
+ "creation_date": self.creation_date,
457
+ "accuracy": self.accuracy,
458
+ "recall": self.recall,
459
+ "precision": self.precision,
460
+ "f1": self.f_measure,
461
+ }
462
+
463
+ pickle.dump(model_data, open("apk_malware.model", "wb"))
464
+
465
+ def apk_variables_to_df_friendly_list(self, apk_data, is_malware=0):
466
+ '''
467
+ A function that takes a dict of APK data and converts it to a list of sloats compatable with the random forest
468
+ classifier
469
+ :param apk_data: a dict of APK data
470
+ :param is_malware: a boolean if the data should be classed as malware or not, can also be None if predicting
471
+ :return: a list of floats
472
+ '''
473
+
474
+ # set dict to be all values from the set, where the dicts values are 0
475
+ dict_of_apk_permissions = dict((el, 0) for el in self.colums)
476
+
477
+ # check what permissions the APK has and set these to 1
478
+ for permission in apk_data["permissions"]:
479
+ if permission in list(self.colums):
480
+ dict_of_apk_permissions[permission] = 1
481
+ else:
482
+ dict_of_apk_permissions["other_permission"] = int(dict_of_apk_permissions["other_permission"]) + 1
483
+
484
+ # Add fields for is_malware and the number of permissions
485
+ dict_of_apk_permissions["num_of_permissions"] = len(apk_data["permissions"])
486
+ if is_malware == None:
487
+ dict_of_apk_permissions.pop("is_malware")
488
+ else:
489
+ dict_of_apk_permissions["is_malware"] = is_malware
490
+
491
+ # return the dict as a list of it's values
492
+ return list(dict_of_apk_permissions.values())
493
+
494
+ def identify(self, apk_location, model_location):
495
+ '''
496
+ Used to identify if a given apk is malware
497
+ :param apk_location: the path to the apk
498
+ :param model_location: the path to the model
499
+ :return:
500
+ '''
501
+ if self.model == None:
502
+ saved_file = pickle.load(open(model_location, "rb"))
503
+ self.model = saved_file["model"]
504
+ self.accuracy = saved_file["accuracy"]
505
+ self.recall = saved_file["recall"]
506
+ self.precision = saved_file["precision"]
507
+ self.f_measure = saved_file["f1"]
508
+
509
+ # Loop through all feature importance scores and save to file
510
+ weights = {}
511
+ for iterator in range(len(self.model.feature_importances_)):
512
+ weight = self.model.feature_importances_[iterator]
513
+ weights[self.colums[iterator]] = weight
514
+
515
+ sorted_weights = dict(sorted(weights.items(), key=lambda item: item[1]))
516
+
517
+ stats_file = open("model_stats.json","w")
518
+ json.dump(sorted_weights, stats_file, indent=4)
519
+ stats_file.close()
520
+ apk_data = self.unpack_apk(apk_path=apk_location)
521
+ list_of_data = self.apk_variables_to_df_friendly_list(apk_data, is_malware=None)
522
+ result = self.model.predict([list_of_data])
523
+
524
+ return result[0], apk_data
525
+
526
+
527
+ if __name__ == '__main__':
528
+
529
+ # a boolean, if set the ML model will be re-trained
530
+ analyser = APK_Analyser()
531
+ model_path = f"{os.path.dirname(os.path.abspath(__file__))}/apk_malware.model"
532
+
533
+ # Check param given
534
+ if len(sys.argv) > 1:
535
+ file_to_check = sys.argv[1]
536
+
537
+ if not file_to_check.endswith(".apk"):
538
+ raise Exception("Please provide an .apk file.")
539
+
540
+
541
+ else:
542
+ raise Exception("Please provide an APK to analyse")
543
+
544
+ # Check should train
545
+ if not os.path.isfile(model_path):
546
+ if os.path.isdir("malware") and os.path.isdir("normal"):
547
+ apk_info = analyser.train_model(malware_apks_folder_path="malware", normal_apks_folder_path="normal")
548
+ else:
549
+ raise Exception(
550
+ "When training a model, ensure that a 'malware' and 'normal' folder exist at the root of this project "
551
+ "and that training APKs exist in both folders.")
552
+ # Check if model exists
553
+ if os.path.exists(model_path):
554
+
555
+ result, apk_data = analyser.identify(file_to_check, model_path)
556
+
557
+ if result == 1:
558
+ print("Analysed file '{}', identified as malware!".format(file_to_check))
559
+ else:
560
+ print("Analysed file '{}', identified as not malware.".format(file_to_check))
561
+
562
+ # Second param is dst json file
563
+ if len(sys.argv) > 2:
564
+ dst_file = sys.argv[2]
565
+ if dst_file.endswith(".json"):
566
+
567
+ if result == 1:
568
+ result = True
569
+ else:
570
+ result = False
571
+
572
+ # check if file exists and if so append to the json, if not create new file
573
+ if os.path.isfile(dst_file) and not os.stat(dst_file).st_size == 0:
574
+ with open(dst_file) as json_file :
575
+ current_json_data = json.load(json_file)
576
+ key = apk_data["package"]
577
+ current_json_data[key] = result
578
+ data_to_write = current_json_data
579
+ else:
580
+ data_to_write = {apk_data["package"]: result}
581
+
582
+ with open(dst_file, 'w') as fp:
583
+ json.dump(data_to_write, fp, indent=4)
584
+ print()
585
+
586
+ else:
587
+ raise Exception("A destination file was provided but it was not a Json file.")
588
+
589
+ else:
590
+ raise Exception("No model found, please train model")
DroidDetective/LICENSE ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ A machine learning malware analysis framework for Android apps.
635
+ Copyright (C) 2022 James Stevenson
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ DroidDetective Copyright (C) 2022 James Stevenson
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <https://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
DroidDetective/README.md ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="center">
2
+ <img width=100% src="cover.png">
3
+ </a>
4
+ </p>
5
+ <p align="center"> 🕵️ A machine learning malware analysis framework for Android apps. ☢️ </p>
6
+
7
+ <br>
8
+
9
+ DroidDetective is a Python tool for analysing Android applications (APKs) for potential malware related behaviour and configurations. When provided with a path to an application (APK file) Droid Detective will make a prediction (using it's ML model) of if the application is malicious. Features and qualities of Droid Detective include:
10
+ - Analysing which of ~330 permissions are specified in the application's ```AndroidManifest.xml``` file. 🙅
11
+ - Analysing the number of standard and proprietary permissions in use in the application's ```AndroidManifest.xml``` file. 🧮
12
+ - Using a RandomForest machine learning classifier, trained off the above data, from ~14 malware families and ~100 Google Play Store applications. 💻
13
+
14
+ # 🤖 Getting Started
15
+ ## Installation
16
+ All DroidDetective dependencies can be installed manually or via the requirements file, with
17
+
18
+ ``` bash
19
+ pip install -r REQUIREMENTS.txt
20
+ ```
21
+
22
+ DroidDetective has been tested on both Windows 10 and Ubuntu 18.0 LTS.
23
+
24
+ ## Usage
25
+ DroidDetective can be run by providing the Python file with an APK as a command line parameter, such as:
26
+ ```
27
+ python DroidDetective.py myAndroidApp.apk
28
+ ```
29
+ If an ```apk_malware.model``` file is not present, then the tooling will first train the model and will require a training set of APKs in both a folder at the root of the project called ```malware``` and another called ```normal```. Once run successfully a result will be printed onto the CLI on if the model has identified the APK to be malicious or benign. An example of this output can be seen below:
30
+
31
+ ```
32
+ >> Analysed file 'com.android.camera2.apk', identified as not malware.
33
+ ```
34
+
35
+ An additional parameter can be provided to ```DroidDetective.py``` as a Json file to save the results to. If this Json file already exists the results of this run will be appended to the Json file.
36
+
37
+ ```
38
+ python DroidDetective.py myAndroidApp.apk output.json
39
+ ```
40
+
41
+ An example of this output Json is as follows:
42
+
43
+ ```json
44
+ {
45
+ "com.android.camera2": false,
46
+ }
47
+ ```
48
+
49
+ # ⚗️ Data Science | The ML Model
50
+ DroidDetective is a Python tool for analyzing Android applications (APKs) for potential malware related behaviour. This works by training a Random Forest classifier on information derived from both known malware APKs and standard APKs available on the Android app store. This tooling comes pre-trained, however, the model can be re-trained on a new dataset at any time. ⚙️
51
+
52
+ This model currently uses permissions from an APKs ```AndroidManifest.xml``` file as a feature set. This works by creating a dictionary of [each standard Android permission](https://gist.github.com/Arinerron/1bcaadc7b1cbeae77de0263f4e15156f) and setting the feature to ```1``` if the permission is present in the APK. Similarly, a feature is added for the amount of permissions in use in the manifest and for the amount of unidentified permissions found in the manifest.
53
+
54
+ The pre-trained model was trained off approximately 14 malware families (each with one or more APK files), located from [ashisdb's repository](https://github.com/ashishb/android-malware), and approximately 100 normal applications located from the Google Play Store.
55
+
56
+ The below denotes the statistics for this ML model:
57
+
58
+ ```
59
+ Accuracy: 0.9310344827586207
60
+ Recall: 0.9166666666666666
61
+ Precision: 0.9166666666666666
62
+ F-Measure: 0.9166666666666666
63
+ ```
64
+
65
+ The top 10 highest weighted features (i.e. Android permissions) used by this model, for identifying malware, can be seen below:
66
+
67
+ ```
68
+ "android.permission.SYSTEM_ALERT_WINDOW": 0.019091367939223395,
69
+ "android.permission.ACCESS_NETWORK_STATE": 0.021001765263234648,
70
+ "android.permission.ACCESS_WIFI_STATE": 0.02198962579120518,
71
+ "android.permission.RECEIVE_BOOT_COMPLETED": 0.026398914436102188,
72
+ "android.permission.GET_TASKS": 0.03595458598076517,
73
+ "android.permission.WAKE_LOCK": 0.03908212881520419,
74
+ "android.permission.WRITE_SMS": 0.057041576632290585,
75
+ "android.permission.INTERNET": 0.08816028225034145,
76
+ "android.permission.WRITE_EXTERNAL_STORAGE": 0.09835914154294739,
77
+ "other_permission": 0.10189463965313218,
78
+ "num_of_permissions": 0.12392224814084198
79
+ ```
80
+
81
+
82
+ # 📜 License
83
+ [GNU General Public License v3.0](https://choosealicense.com/licenses/gpl-3.0/)
DroidDetective/__pycache__/DroidDetective.cpython-38.pyc ADDED
Binary file (22 kB). View file
 
DroidDetective/apk_malware.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed396e17d893369cacf3164cb3a985a4389550b5c2c52252d2665d78ae6961f8
3
+ size 502840
DroidDetective/cover.png ADDED
DroidDetective/model_stats.json ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "android.permission.ACCESS_CACHE_FILESYSTEM": 0.0,
3
+ "android.permission.ACCESS_CHECKIN_PROPERTIES": 0.0,
4
+ "android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY": 0.0,
5
+ "android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED": 0.0,
6
+ "android.permission.ACCESS_DRM_CERTIFICATES": 0.0,
7
+ "android.permission.ACCESS_EPHEMERAL_APPS": 0.0,
8
+ "android.permission.ACCESS_FM_RADIO": 0.0,
9
+ "android.permission.ACCESS_INPUT_FLINGER": 0.0,
10
+ "android.permission.ACCESS_LOCATION_EXTRA_COMMANDS": 0.0,
11
+ "android.permission.ACCESS_NETWORK_CONDITIONS": 0.0,
12
+ "android.permission.ACCESS_PDB_STATE": 0.0,
13
+ "android.permission.ACCESS_VOICE_INTERACTION_SERVICE": 0.0,
14
+ "android.permission.ACCESS_WIMAX_STATE": 0.0,
15
+ "android.permission.ACCOUNT_MANAGER": 0.0,
16
+ "android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK": 0.0,
17
+ "android.permission.ASEC_ACCESS": 0.0,
18
+ "android.permission.ASEC_CREATE": 0.0,
19
+ "android.permission.ASEC_DESTROY": 0.0,
20
+ "android.permission.ASEC_MOUNT_UNMOUNT": 0.0,
21
+ "android.permission.ASEC_RENAME": 0.0,
22
+ "android.permission.BIND_ACCESSIBILITY_SERVICE": 0.0,
23
+ "android.permission.BIND_APPWIDGET": 0.0,
24
+ "android.permission.BIND_CARRIER_MESSAGING_SERVICE": 0.0,
25
+ "android.permission.BIND_CHOOSER_TARGET_SERVICE": 0.0,
26
+ "android.permission.BIND_CONDITION_PROVIDER_SERVICE": 0.0,
27
+ "android.permission.BIND_CONNECTION_SERVICE": 0.0,
28
+ "android.permission.BIND_DREAM_SERVICE": 0.0,
29
+ "android.permission.BIND_INPUT_METHOD": 0.0,
30
+ "android.permission.BIND_INTENT_FILTER_VERIFIER": 0.0,
31
+ "android.permission.BIND_JOB_SERVICE": 0.0,
32
+ "android.permission.BIND_KEYGUARD_APPWIDGET": 0.0,
33
+ "android.permission.BIND_MIDI_DEVICE_SERVICE": 0.0,
34
+ "android.permission.BIND_NOTIFICATION_LISTENER_SERVICE": 0.0,
35
+ "android.permission.BIND_NOTIFICATION_RANKER_SERVICE": 0.0,
36
+ "android.permission.BIND_PACKAGE_VERIFIER": 0.0,
37
+ "android.permission.BIND_PRINT_RECOMMENDATION_SERVICE": 0.0,
38
+ "android.permission.BIND_PRINT_SERVICE": 0.0,
39
+ "android.permission.BIND_PRINT_SPOOLER_SERVICE": 0.0,
40
+ "android.permission.BIND_QUICK_SETTINGS_TILE": 0.0,
41
+ "android.permission.BIND_REMOTEVIEWS": 0.0,
42
+ "android.permission.BIND_REMOTE_DISPLAY": 0.0,
43
+ "android.permission.BIND_ROUTE_PROVIDER": 0.0,
44
+ "android.permission.BIND_RUNTIME_PERMISSION_PRESENTER_SERVICE": 0.0,
45
+ "android.permission.BIND_SCREENING_SERVICE": 0.0,
46
+ "android.permission.BIND_TELECOM_CONNECTION_SERVICE": 0.0,
47
+ "android.permission.BIND_TEXT_SERVICE": 0.0,
48
+ "android.permission.BIND_TRUST_AGENT": 0.0,
49
+ "android.permission.BIND_TV_INPUT": 0.0,
50
+ "android.permission.BIND_TV_REMOTE_SERVICE": 0.0,
51
+ "android.permission.BIND_VOICE_INTERACTION": 0.0,
52
+ "android.permission.BIND_VPN_SERVICE": 0.0,
53
+ "android.permission.BIND_VR_LISTENER_SERVICE": 0.0,
54
+ "android.permission.BLUETOOTH_MAP": 0.0,
55
+ "android.permission.BLUETOOTH_PRIVILEGED": 0.0,
56
+ "android.permission.BRICK": 0.0,
57
+ "android.permission.BROADCAST_CALLLOG_INFO": 0.0,
58
+ "android.permission.BROADCAST_NETWORK_PRIVILEGED": 0.0,
59
+ "android.permission.android.permission.ACCESS_ALL_DOWNLOADS": 0.0,
60
+ "android.permission.CACHE_CONTENT": 0.0,
61
+ "android.permission.CAMERA_DISABLE_TRANSMIT_LED": 0.0,
62
+ "android.permission.CAMERA_SEND_SYSTEM_EVENTS": 0.0,
63
+ "android.permission.CAPTURE_AUDIO_HOTWORD": 0.0,
64
+ "android.permission.CAPTURE_AUDIO_OUTPUT": 0.0,
65
+ "android.permission.CAPTURE_SECURE_VIDEO_OUTPUT": 0.0,
66
+ "android.permission.CAPTURE_TV_INPUT": 0.0,
67
+ "android.permission.CAPTURE_VIDEO_OUTPUT": 0.0,
68
+ "android.permission.CARRIER_FILTER_SMS": 0.0,
69
+ "android.permission.CHANGE_BACKGROUND_DATA_SETTING": 0.0,
70
+ "android.permission.CHANGE_WIMAX_STATE": 0.0,
71
+ "android.permission.CLEAR_APP_GRANTED_URI_PERMISSIONS": 0.0,
72
+ "android.permission.CONFIGURE_DISPLAY_COLOR_TRANSFORM": 0.0,
73
+ "android.permission.CONFIGURE_WIFI_DISPLAY": 0.0,
74
+ "android.permission.CONFIRM_FULL_BACKUP": 0.0,
75
+ "android.permission.CONTROL_KEYGUARD": 0.0,
76
+ "android.permission.CONTROL_LOCATION_UPDATES": 0.0,
77
+ "android.permission.CONTROL_WIFI_DISPLAY": 0.0,
78
+ "android.permission.DIAGNOSTIC": 0.0,
79
+ "android.permission.DISPATCH_PROVISIONING_MESSAGE": 0.0,
80
+ "android.permission.DOWNLOAD_CACHE_NON_PURGEABLE": 0.0,
81
+ "android.permission.DVB_DEVICE": 0.0,
82
+ "android.permission.FACTORY_TEST": 0.0,
83
+ "android.permission.FILTER_EVENTS": 0.0,
84
+ "android.permission.FORCE_STOP_PACKAGES": 0.0,
85
+ "android.permission.FRAME_STATS": 0.0,
86
+ "android.permission.FREEZE_SCREEN": 0.0,
87
+ "android.permission.GET_APP_GRANTED_URI_PERMISSIONS": 0.0,
88
+ "android.permission.GET_PACKAGE_IMPORTANCE": 0.0,
89
+ "android.permission.GET_PASSWORD": 0.0,
90
+ "android.permission.GET_PROCESS_STATE_AND_OOM_SCORE": 0.0,
91
+ "android.permission.GLOBAL_SEARCH": 0.0,
92
+ "android.permission.GLOBAL_SEARCH_CONTROL": 0.0,
93
+ "android.permission.HARDWARE_TEST": 0.0,
94
+ "android.permission.HDMI_CEC": 0.0,
95
+ "android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS": 0.0,
96
+ "android.permission.INVOKE_CARRIER_SETUP": 0.0,
97
+ "android.permission.KILL_UID": 0.0,
98
+ "android.permission.LAUNCH_TRUST_AGENT_SETTINGS": 0.0,
99
+ "android.permission.LOCATION_HARDWARE": 0.0,
100
+ "android.permission.LOOP_RADIO": 0.0,
101
+ "android.permission.MANAGE_ACTIVITY_STACKS": 0.0,
102
+ "android.permission.MANAGE_APP_OPS_RESTRICTIONS": 0.0,
103
+ "android.permission.MANAGE_APP_TOKENS": 0.0,
104
+ "android.permission.MANAGE_CA_CERTIFICATES": 0.0,
105
+ "android.permission.MANAGE_DEVICE_ADMINS": 0.0,
106
+ "android.permission.MANAGE_DOCUMENTS": 0.0,
107
+ "android.permission.MANAGE_FINGERPRINT": 0.0,
108
+ "android.permission.MANAGE_MEDIA_PROJECTION": 0.0,
109
+ "android.permission.MANAGE_NETWORK_POLICY": 0.0,
110
+ "android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS": 0.0,
111
+ "android.permission.MANAGE_SOUND_TRIGGER": 0.0,
112
+ "android.permission.MANAGE_VOICE_KEYPHRASES": 0.0,
113
+ "android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS": 0.0,
114
+ "android.permission.MODIFY_CELL_BROADCASTS": 0.0,
115
+ "android.permission.MODIFY_NETWORK_ACCOUNTING": 0.0,
116
+ "android.permission.MODIFY_PARENTAL_CONTROLS": 0.0,
117
+ "android.permission.MOUNT_FORMAT_FILESYSTEMS": 0.0,
118
+ "android.permission.NET_ADMIN": 0.0,
119
+ "android.permission.NET_TUNNELING": 0.0,
120
+ "android.permission.NFC_HANDOVER_STATUS": 0.0,
121
+ "android.permission.NOTIFY_PENDING_SYSTEM_UPDATE": 0.0,
122
+ "android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS": 0.0,
123
+ "android.permission.OEM_UNLOCK_STATE": 0.0,
124
+ "android.permission.PACKAGE_VERIFICATION_AGENT": 0.0,
125
+ "android.permission.PACKET_KEEPALIVE_OFFLOAD": 0.0,
126
+ "android.permission.PERFORM_CDMA_PROVISIONING": 0.0,
127
+ "android.permission.PERFORM_SIM_ACTIVATION": 0.0,
128
+ "android.permission.PERSISTENT_ACTIVITY": 0.0,
129
+ "android.permission.PROCESS_CALLLOG_INFO": 0.0,
130
+ "android.permission.PROVIDE_TRUST_AGENT": 0.0,
131
+ "android.permission.QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT": 0.0,
132
+ "android.permission.READ_DREAM_STATE": 0.0,
133
+ "android.permission.READ_INPUT_STATE": 0.0,
134
+ "android.permission.READ_INSTALL_SESSIONS": 0.0,
135
+ "android.permission.READ_SEARCH_INDEXABLES": 0.0,
136
+ "android.permission.READ_SOCIAL_STREAM": 0.0,
137
+ "android.permission.READ_USER_DICTIONARY": 0.0,
138
+ "android.permission.READ_WIFI_CREDENTIAL": 0.0,
139
+ "android.permission.RECEIVE_BLUETOOTH_MAP": 0.0,
140
+ "android.permission.RECEIVE_DATA_ACTIVITY_CHANGE": 0.0,
141
+ "android.permission.RECEIVE_EMERGENCY_BROADCAST": 0.0,
142
+ "android.permission.RECEIVE_MEDIA_RESOURCE_USAGE": 0.0,
143
+ "android.permission.RECEIVE_STK_COMMANDS": 0.0,
144
+ "android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE": 0.0,
145
+ "android.permission.RECOVERY": 0.0,
146
+ "android.permission.REGISTER_CALL_PROVIDER": 0.0,
147
+ "android.permission.REGISTER_CONNECTION_MANAGER": 0.0,
148
+ "android.permission.REGISTER_SIM_SUBSCRIPTION": 0.0,
149
+ "android.permission.REGISTER_WINDOW_MANAGER_LISTENERS": 0.0,
150
+ "android.permission.REMOVE_DRM_CERTIFICATES": 0.0,
151
+ "android.permission.REMOVE_TASKS": 0.0,
152
+ "android.permission.RESET_FINGERPRINT_LOCKOUT": 0.0,
153
+ "android.permission.RESET_SHORTCUT_MANAGER_THROTTLING": 0.0,
154
+ "android.permission.RETRIEVE_WINDOW_CONTENT": 0.0,
155
+ "android.permission.SCORE_NETWORKS": 0.0,
156
+ "android.permission.SEND_RESPOND_VIA_MESSAGE": 0.0,
157
+ "android.permission.SEND_SMS_NO_CONFIRMATION": 0.0,
158
+ "android.permission.SERIAL_PORT": 0.0,
159
+ "android.permission.SET_ALWAYS_FINISH": 0.0,
160
+ "android.permission.SET_ANIMATION_SCALE": 0.0,
161
+ "android.permission.SET_INPUT_CALIBRATION": 0.0,
162
+ "android.permission.SET_KEYBOARD_LAYOUT": 0.0,
163
+ "android.permission.SET_ORIENTATION": 0.0,
164
+ "android.permission.SET_POINTER_SPEED": 0.0,
165
+ "android.permission.SET_PREFERRED_APPLICATIONS": 0.0,
166
+ "android.permission.SET_PROCESS_LIMIT": 0.0,
167
+ "android.permission.SET_TIME": 0.0,
168
+ "android.permission.SET_WALLPAPER_HINTS": 0.0,
169
+ "android.permission.START_ANY_ACTIVITY": 0.0,
170
+ "android.permission.START_TASKS_FROM_RECENTS": 0.0,
171
+ "android.permission.STORAGE_INTERNAL": 0.0,
172
+ "android.permission.SUBSCRIBED_FEEDS_WRITE": 0.0,
173
+ "android.permission.TABLET_MODE": 0.0,
174
+ "android.permission.TEMPORARY_ENABLE_ACCESSIBILITY": 0.0,
175
+ "android.permission.TRUST_LISTENER": 0.0,
176
+ "android.permission.TV_INPUT_HARDWARE": 0.0,
177
+ "android.permission.TV_VIRTUAL_REMOTE_CONTROLLER": 0.0,
178
+ "android.permission.UPDATE_CONFIG": 0.0,
179
+ "android.permission.UPDATE_LOCK": 0.0,
180
+ "android.permission.UPDATE_LOCK_TASK_PACKAGES": 0.0,
181
+ "android.permission.WRITE_DREAM_STATE": 0.0,
182
+ "android.permission.WRITE_GSERVICES": 0.0,
183
+ "android.permission.WRITE_PROFILE": 0.0,
184
+ "android.permission.WRITE_SOCIAL_STREAM": 0.0,
185
+ "android.permission.WRITE_USER_DICTIONARYCACHE_CONTENT": 0.0,
186
+ "android.permission.BIND_INCALL_SERVICE": 2.3581681476419717e-06,
187
+ "android.permission.BIND_DEVICE_ADMIN": 3.5559678416821885e-06,
188
+ "android.permission.GET_DETAILED_TASKS": 1.0714285714285379e-05,
189
+ "android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION": 2.0439381898074015e-05,
190
+ "android.permission.CRYPT_KEEPER": 2.358936684124777e-05,
191
+ "android.permission.FORCE_BACK": 3.541512687854153e-05,
192
+ "android.permission.INSTALL_LOCATION_PROVIDER": 3.588068890922859e-05,
193
+ "android.permission.DUMP": 4.0488027438542116e-05,
194
+ "android.permission.GET_PACKAGE_SIZE": 6.600765306122452e-05,
195
+ "android.permission.ACCESS_KEYGUARD_SECURE_STORAGE": 6.63204546699692e-05,
196
+ "android.permission.ACCESS_SURFACE_FLINGER": 6.641256641256639e-05,
197
+ "android.permission.UPDATE_DEVICE_STATS": 7.247899159663838e-05,
198
+ "android.permission.SHUTDOWN": 8.457364921740765e-05,
199
+ "android.permission.MOVE_PACKAGE": 9.47802197802198e-05,
200
+ "android.permission.MANAGE_USB": 0.00013598676713285834,
201
+ "android.permission.REMOTE_AUDIO_PLAYBACK": 0.0001433264591159318,
202
+ "android.permission.GET_TOP_ACTIVITY_INFO": 0.00014563198128963748,
203
+ "android.permission.SIGNAL_PERSISTENT_PROCESSES": 0.00015101638681184093,
204
+ "android.permission.READ_BLOCKED_NUMBERS": 0.00015126237348459483,
205
+ "android.permission.SET_WALLPAPER_COMPONENT": 0.00016627902029402988,
206
+ "android.permission.INJECT_EVENTS": 0.0001770584777120706,
207
+ "android.permission.WRITE_USER_DICTIONARY": 0.0001996591185780381,
208
+ "android.permission.TRANSMIT_IR": 0.0002087872185911402,
209
+ "android.permission.READ_NETWORK_USAGE_HISTORY": 0.0002124907612712491,
210
+ "android.permission.MODIFY_DAY_NIGHT_MODE": 0.00021993574051407572,
211
+ "android.permission.CONTROL_INCALL_EXPERIENCE": 0.0002208141321044547,
212
+ "android.permission.SEND_CALL_LOG_CHANGE": 0.0002316361246569526,
213
+ "android.permission.ACCESS_NOTIFICATIONS": 0.0002444727891156462,
214
+ "android.permission.COPY_PROTECTED_DATA": 0.0002553104575163398,
215
+ "android.permission.SET_DEBUG_APP": 0.000258659469185785,
216
+ "android.permission.CHANGE_APP_IDLE_STATE": 0.0002711846461846461,
217
+ "android.permission.ACCESS_MTP": 0.00028942125848389156,
218
+ "android.permission.WRITE_BLOCKED_NUMBERS": 0.00031489594742606803,
219
+ "android.permission.BIND_NFC_SERVICE": 0.00031839580730709744,
220
+ "android.permission.ACCESS_VR_MANAGER": 0.00035087852013233276,
221
+ "android.permission.BACKUP": 0.0003659301789637839,
222
+ "android.permission.PEERS_MAC_ADDRESS": 0.00037185883222468595,
223
+ "android.permission.RETRIEVE_WINDOW_TOKEN": 0.00037885918674698794,
224
+ "android.permission.SET_TIME_ZONE": 0.0003907099369428135,
225
+ "android.permission.BLUETOOTH_STACK": 0.0003945775180714943,
226
+ "android.permission.DISPATCH_NFC_MESSAGE": 0.0004362098112098108,
227
+ "android.permission.BIND_DIRECTORY_SEARCH": 0.0004380997763419641,
228
+ "android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST": 0.00044271397431586786,
229
+ "android.permission.GET_INTENT_SENDER_INTENT": 0.00044463856111811196,
230
+ "android.permission.TETHER_PRIVILEGED": 0.00044697059863539504,
231
+ "android.permission.GET_APP_OPS_STATS": 0.00047295832542709374,
232
+ "android.permission.FLASHLIGHT": 0.00047907812884946985,
233
+ "android.permission.USER_ACTIVITY": 0.0005068870523415984,
234
+ "android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION": 0.0005137232101615344,
235
+ "android.permission.ACCESS_BLUETOOTH_SHARE": 0.0005218843198418364,
236
+ "android.permission.OVERRIDE_WIFI_CONFIG": 0.0005300951975498846,
237
+ "android.permission.MANAGE_NOTIFICATIONS": 0.0005313005313005312,
238
+ "android.permission.DEVICE_POWER": 0.0005333070800142958,
239
+ "android.permission.MEDIA_CONTENT_CONTROL": 0.0006110405854857903,
240
+ "android.permission.SET_SCREEN_COMPATIBILITY": 0.0006241679309202618,
241
+ "android.permission.GET_ACCOUNTS_PRIVILEGED": 0.0006528828026186985,
242
+ "android.permission.ACCESS_ALL_DOWNLOADS": 0.0006711936611780281,
243
+ "android.permission.SET_ACTIVITY_WATCHER": 0.000688101441265998,
244
+ "android.permission.SUBSCRIBED_FEEDS_READ": 0.0007191848205557883,
245
+ "android.permission.DISABLE_KEYGUARD": 0.000728526220245477,
246
+ "android.permission.REVOKE_RUNTIME_PERMISSIONS": 0.0008025276074953263,
247
+ "android.permission.REAL_GET_TASKS": 0.0008026046338546365,
248
+ "android.permission.READ_SYNC_SETTINGS": 0.0008391960018354132,
249
+ "android.permission.GRANT_RUNTIME_PERMISSIONS": 0.00085211732930065,
250
+ "android.permission.STOP_APP_SWITCHES": 0.0008849369206495518,
251
+ "android.permission.CREATE_USERS": 0.0008982903482696866,
252
+ "android.permission.READ_FRAME_BUFFER": 0.0009035714285714288,
253
+ "android.permission.CALL_PRIVILEGED": 0.0009629715353869405,
254
+ "android.permission.STATUS_BAR": 0.0009824982782046464,
255
+ "android.permission.CHANGE_COMPONENT_ENABLED_STATE": 0.0010207853356058944,
256
+ "android.permission.REQUEST_INSTALL_PACKAGES": 0.0010515103518906608,
257
+ "android.permission.DELETE_CACHE_FILES": 0.0011957243653227586,
258
+ "android.permission.STATUS_BAR_SERVICE": 0.0012049216146589913,
259
+ "android.permission.ACCESS_DOWNLOAD_MANAGER": 0.0012203450735132767,
260
+ "android.permission.INTENT_FILTER_VERIFICATION_AGENT": 0.0012464008125131617,
261
+ "android.permission.BROADCAST_SMS": 0.0012706680860043085,
262
+ "android.permission.BIND_WALLPAPER": 0.0012856431248604227,
263
+ "android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY": 0.001464869589114707,
264
+ "android.permission.READ_SYNC_STATS": 0.001528555901511666,
265
+ "android.permission.MODIFY_AUDIO_ROUTING": 0.0015813750618622615,
266
+ "android.permission.MASTER_CLEAR": 0.0016437394899916716,
267
+ "android.permission.BIND_CARRIER_SERVICES": 0.0016479150127368528,
268
+ "android.permission.BROADCAST_WAP_PUSH": 0.0016615421555002357,
269
+ "android.permission.LOCAL_MAC_ADDRESS": 0.001721047894585582,
270
+ "android.permission.CLEAR_APP_USER_DATA": 0.0018920857010222825,
271
+ "android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS": 0.00189939928179308,
272
+ "android.permission.EXPAND_STATUS_BAR": 0.0019800025835586964,
273
+ "android.permission.BROADCAST_PACKAGE_REMOVED": 0.0020895051392456543,
274
+ "android.permission.INTERNAL_SYSTEM_WINDOW": 0.0021033231831248523,
275
+ "android.permission.UPDATE_APP_OPS_STATS": 0.002227881116151777,
276
+ "android.permission.READ_PRECISE_PHONE_STATE": 0.0022339773931326916,
277
+ "android.permission.REORDER_TASKS": 0.0022905589770054018,
278
+ "android.permission.READ_PROFILE": 0.002350049252620653,
279
+ "android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME": 0.0026912000178107016,
280
+ "android.permission.CONTROL_VPN": 0.002779980431967564,
281
+ "android.permission.BATTERY_STATS": 0.0027921471814704208,
282
+ "android.permission.ACCESS_MOCK_LOCATION": 0.0029139534469208245,
283
+ "android.permission.CHANGE_CONFIGURATION": 0.0030094920598613024,
284
+ "android.permission.READ_OEM_UNLOCK_STATE": 0.0030108684372664573,
285
+ "android.permission.CLEAR_APP_CACHE": 0.003473560848205689,
286
+ "android.permission.READ_LOGS": 0.0037950112292192517,
287
+ "android.permission.WRITE_SYNC_SETTINGS": 0.003928029293643143,
288
+ "android.permission.REBOOT": 0.003947905987547195,
289
+ "android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS": 0.003993492161391373,
290
+ "android.permission.MODIFY_AUDIO_SETTINGS": 0.004121216973199242,
291
+ "android.permission.NFC": 0.004133915708722107,
292
+ "android.permission.INTERACT_ACROSS_USERS_FULL": 0.004238567962458395,
293
+ "android.permission.CONNECTIVITY_INTERNAL": 0.004390162794060207,
294
+ "android.permission.WRITE_SECURE_SETTINGS": 0.004456849437612022,
295
+ "android.permission.AUTHENTICATE_ACCOUNTS": 0.004516935210329915,
296
+ "android.permission.BROADCAST_STICKY": 0.004810906191931197,
297
+ "android.permission.MANAGE_USERS": 0.005158822914323014,
298
+ "android.permission.ACCESS_NOTIFICATION_POLICY": 0.005256397821908367,
299
+ "android.permission.CHANGE_NETWORK_STATE": 0.005699815000363686,
300
+ "android.permission.DELETE_PACKAGES": 0.005973369035181792,
301
+ "android.permission.PACKAGE_USAGE_STATS": 0.006270510312365077,
302
+ "android.permission.BLUETOOTH_ADMIN": 0.006463547754603444,
303
+ "android.permission.WRITE_MEDIA_STORAGE": 0.006713011322447824,
304
+ "android.permission.CHANGE_WIFI_MULTICAST_STATE": 0.006904486590726039,
305
+ "android.permission.MODIFY_PHONE_STATE": 0.007240846261408641,
306
+ "android.permission.WRITE_APN_SETTINGS": 0.0073899437543908045,
307
+ "android.permission.MOUNT_UNMOUNT_FILESYSTEMS": 0.007579246447161441,
308
+ "android.permission.INSTALL_PACKAGES": 0.00909328273001448,
309
+ "android.permission.CHANGE_WIFI_STATE": 0.009454277665923992,
310
+ "android.permission.RESTART_PACKAGES": 0.009494975964757256,
311
+ "android.permission.BLUETOOTH": 0.010347563715776392,
312
+ "android.permission.WRITE_SETTINGS": 0.010527505006360714,
313
+ "android.permission.SET_WALLPAPER": 0.010631933006215302,
314
+ "android.permission.MANAGE_ACCOUNTS": 0.01103857346952233,
315
+ "android.permission.KILL_BACKGROUND_PROCESSES": 0.013440070239968177,
316
+ "android.permission.INTERACT_ACROSS_USERS": 0.013537440717104303,
317
+ "android.permission.VIBRATE": 0.014552026201336816,
318
+ "android.permission.READ_EXTERNAL_STORAGE": 0.015178371582936114,
319
+ "android.permission.USE_CREDENTIALS": 0.01797655668413146,
320
+ "android.permission.READ_PRIVILEGED_PHONE_STATE": 0.018251395713628174,
321
+ "android.permission.SYSTEM_ALERT_WINDOW": 0.019091367939223395,
322
+ "android.permission.ACCESS_NETWORK_STATE": 0.021001765263234648,
323
+ "android.permission.ACCESS_WIFI_STATE": 0.02198962579120518,
324
+ "android.permission.RECEIVE_BOOT_COMPLETED": 0.026398914436102188,
325
+ "android.permission.GET_TASKS": 0.03595458598076517,
326
+ "android.permission.WAKE_LOCK": 0.03908212881520419,
327
+ "android.permission.WRITE_SMS": 0.057041576632290585,
328
+ "android.permission.INTERNET": 0.08816028225034145,
329
+ "android.permission.WRITE_EXTERNAL_STORAGE": 0.09835914154294739,
330
+ "other_permission": 0.10189463965313218,
331
+ "num_of_permissions": 0.12392224814084198
332
+ }
README.md CHANGED
@@ -1,13 +1,83 @@
1
- ---
2
- title: DroidDetective
3
- emoji: 😻
4
- colorFrom: green
5
- colorTo: green
6
- sdk: gradio
7
- sdk_version: 3.0.24
8
- app_file: app.py
9
- pinned: false
10
- license: gpl-3.0
11
- ---
12
-
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p align="center">
2
+ <img width=100% src="cover.png">
3
+ </a>
4
+ </p>
5
+ <p align="center"> 🕵️ A machine learning malware analysis framework for Android apps. ☢️ </p>
6
+
7
+ <br>
8
+
9
+ DroidDetective is a Python tool for analysing Android applications (APKs) for potential malware related behaviour and configurations. When provided with a path to an application (APK file) Droid Detective will make a prediction (using it's ML model) of if the application is malicious. Features and qualities of Droid Detective include:
10
+ - Analysing which of ~330 permissions are specified in the application's ```AndroidManifest.xml``` file. 🙅
11
+ - Analysing the number of standard and proprietary permissions in use in the application's ```AndroidManifest.xml``` file. 🧮
12
+ - Using a RandomForest machine learning classifier, trained off the above data, from ~14 malware families and ~100 Google Play Store applications. 💻
13
+
14
+ # 🤖 Getting Started
15
+ ## Installation
16
+ All DroidDetective dependencies can be installed manually or via the requirements file, with
17
+
18
+ ``` bash
19
+ pip install -r REQUIREMENTS.txt
20
+ ```
21
+
22
+ DroidDetective has been tested on both Windows 10 and Ubuntu 18.0 LTS.
23
+
24
+ ## Usage
25
+ DroidDetective can be run by providing the Python file with an APK as a command line parameter, such as:
26
+ ```
27
+ python DroidDetective.py myAndroidApp.apk
28
+ ```
29
+ If an ```apk_malware.model``` file is not present, then the tooling will first train the model and will require a training set of APKs in both a folder at the root of the project called ```malware``` and another called ```normal```. Once run successfully a result will be printed onto the CLI on if the model has identified the APK to be malicious or benign. An example of this output can be seen below:
30
+
31
+ ```
32
+ >> Analysed file 'com.android.camera2.apk', identified as not malware.
33
+ ```
34
+
35
+ An additional parameter can be provided to ```DroidDetective.py``` as a Json file to save the results to. If this Json file already exists the results of this run will be appended to the Json file.
36
+
37
+ ```
38
+ python DroidDetective.py myAndroidApp.apk output.json
39
+ ```
40
+
41
+ An example of this output Json is as follows:
42
+
43
+ ```json
44
+ {
45
+ "com.android.camera2": false,
46
+ }
47
+ ```
48
+
49
+ # ⚗️ Data Science | The ML Model
50
+ DroidDetective is a Python tool for analyzing Android applications (APKs) for potential malware related behaviour. This works by training a Random Forest classifier on information derived from both known malware APKs and standard APKs available on the Android app store. This tooling comes pre-trained, however, the model can be re-trained on a new dataset at any time. ⚙️
51
+
52
+ This model currently uses permissions from an APKs ```AndroidManifest.xml``` file as a feature set. This works by creating a dictionary of [each standard Android permission](https://gist.github.com/Arinerron/1bcaadc7b1cbeae77de0263f4e15156f) and setting the feature to ```1``` if the permission is present in the APK. Similarly, a feature is added for the amount of permissions in use in the manifest and for the amount of unidentified permissions found in the manifest.
53
+
54
+ The pre-trained model was trained off approximately 14 malware families (each with one or more APK files), located from [ashisdb's repository](https://github.com/ashishb/android-malware), and approximately 100 normal applications located from the Google Play Store.
55
+
56
+ The below denotes the statistics for this ML model:
57
+
58
+ ```
59
+ Accuracy: 0.9310344827586207
60
+ Recall: 0.9166666666666666
61
+ Precision: 0.9166666666666666
62
+ F-Measure: 0.9166666666666666
63
+ ```
64
+
65
+ The top 10 highest weighted features (i.e. Android permissions) used by this model, for identifying malware, can be seen below:
66
+
67
+ ```
68
+ "android.permission.SYSTEM_ALERT_WINDOW": 0.019091367939223395,
69
+ "android.permission.ACCESS_NETWORK_STATE": 0.021001765263234648,
70
+ "android.permission.ACCESS_WIFI_STATE": 0.02198962579120518,
71
+ "android.permission.RECEIVE_BOOT_COMPLETED": 0.026398914436102188,
72
+ "android.permission.GET_TASKS": 0.03595458598076517,
73
+ "android.permission.WAKE_LOCK": 0.03908212881520419,
74
+ "android.permission.WRITE_SMS": 0.057041576632290585,
75
+ "android.permission.INTERNET": 0.08816028225034145,
76
+ "android.permission.WRITE_EXTERNAL_STORAGE": 0.09835914154294739,
77
+ "other_permission": 0.10189463965313218,
78
+ "num_of_permissions": 0.12392224814084198
79
+ ```
80
+
81
+
82
+ # 📜 License
83
+ [GNU General Public License v3.0](https://choosealicense.com/licenses/gpl-3.0/)
app.py ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import sys
3
+
4
+ import nltk
5
+ import gradio as gr
6
+ from androguard.misc import AnalyzeAPK
7
+
8
+ from DroidDetective.DroidDetective import APK_Analyser
9
+
10
+ def check_apk(apk_to_check):
11
+
12
+ output_builder = ""
13
+
14
+
15
+ analyser = APK_Analyser()
16
+ model_path = f"{os.path.dirname(os.path.abspath(__file__))}/DroidDetective/apk_malware.model"
17
+ file_to_check = apk_to_check.name
18
+
19
+ if not file_to_check.endswith(".apk"):
20
+ return "Please provide an .apk file."
21
+
22
+ # Check should train
23
+ if not os.path.isfile(model_path):
24
+ if os.path.isdir("malware") and os.path.isdir("normal"):
25
+ apk_info = analyser.train_model(malware_apks_folder_path="malware", normal_apks_folder_path="normal")
26
+ else:
27
+ return "When training a model, ensure that a 'malware' and 'normal' folder exist at the root of this project and that training APKs exist in both folders."
28
+
29
+ # Check if model exists
30
+ if os.path.exists(model_path):
31
+
32
+ result, apk_data = analyser.identify(file_to_check, model_path)
33
+
34
+ if result == 1:
35
+ output_builder = output_builder + "Analysed file, identified as malware!"
36
+ else:
37
+ output_builder = output_builder + "Analysed file, identified as not malware.".format(file_to_check)
38
+
39
+ else:
40
+ return "No model found, please train model"
41
+
42
+ output_builder = output_builder + "\n"+"-"*20 +"\n"+"Permissions: \n"
43
+ a, d, dx = AnalyzeAPK(file_to_check)
44
+
45
+ for permission in a.get_permissions():
46
+ output_builder = output_builder + permission + "\n"
47
+
48
+ return output_builder
49
+ demo = gr.Interface(
50
+ fn=check_apk,
51
+ inputs= gr.File(),
52
+ outputs="text",
53
+ )
54
+
55
+ demo.launch()
56
+
model_stats.json ADDED
@@ -0,0 +1,332 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "android.permission.ACCESS_CACHE_FILESYSTEM": 0.0,
3
+ "android.permission.ACCESS_CHECKIN_PROPERTIES": 0.0,
4
+ "android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY": 0.0,
5
+ "android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED": 0.0,
6
+ "android.permission.ACCESS_DRM_CERTIFICATES": 0.0,
7
+ "android.permission.ACCESS_EPHEMERAL_APPS": 0.0,
8
+ "android.permission.ACCESS_FM_RADIO": 0.0,
9
+ "android.permission.ACCESS_INPUT_FLINGER": 0.0,
10
+ "android.permission.ACCESS_LOCATION_EXTRA_COMMANDS": 0.0,
11
+ "android.permission.ACCESS_NETWORK_CONDITIONS": 0.0,
12
+ "android.permission.ACCESS_PDB_STATE": 0.0,
13
+ "android.permission.ACCESS_VOICE_INTERACTION_SERVICE": 0.0,
14
+ "android.permission.ACCESS_WIMAX_STATE": 0.0,
15
+ "android.permission.ACCOUNT_MANAGER": 0.0,
16
+ "android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK": 0.0,
17
+ "android.permission.ASEC_ACCESS": 0.0,
18
+ "android.permission.ASEC_CREATE": 0.0,
19
+ "android.permission.ASEC_DESTROY": 0.0,
20
+ "android.permission.ASEC_MOUNT_UNMOUNT": 0.0,
21
+ "android.permission.ASEC_RENAME": 0.0,
22
+ "android.permission.BIND_ACCESSIBILITY_SERVICE": 0.0,
23
+ "android.permission.BIND_APPWIDGET": 0.0,
24
+ "android.permission.BIND_CARRIER_MESSAGING_SERVICE": 0.0,
25
+ "android.permission.BIND_CHOOSER_TARGET_SERVICE": 0.0,
26
+ "android.permission.BIND_CONDITION_PROVIDER_SERVICE": 0.0,
27
+ "android.permission.BIND_CONNECTION_SERVICE": 0.0,
28
+ "android.permission.BIND_DREAM_SERVICE": 0.0,
29
+ "android.permission.BIND_INPUT_METHOD": 0.0,
30
+ "android.permission.BIND_INTENT_FILTER_VERIFIER": 0.0,
31
+ "android.permission.BIND_JOB_SERVICE": 0.0,
32
+ "android.permission.BIND_KEYGUARD_APPWIDGET": 0.0,
33
+ "android.permission.BIND_MIDI_DEVICE_SERVICE": 0.0,
34
+ "android.permission.BIND_NOTIFICATION_LISTENER_SERVICE": 0.0,
35
+ "android.permission.BIND_NOTIFICATION_RANKER_SERVICE": 0.0,
36
+ "android.permission.BIND_PACKAGE_VERIFIER": 0.0,
37
+ "android.permission.BIND_PRINT_RECOMMENDATION_SERVICE": 0.0,
38
+ "android.permission.BIND_PRINT_SERVICE": 0.0,
39
+ "android.permission.BIND_PRINT_SPOOLER_SERVICE": 0.0,
40
+ "android.permission.BIND_QUICK_SETTINGS_TILE": 0.0,
41
+ "android.permission.BIND_REMOTEVIEWS": 0.0,
42
+ "android.permission.BIND_REMOTE_DISPLAY": 0.0,
43
+ "android.permission.BIND_ROUTE_PROVIDER": 0.0,
44
+ "android.permission.BIND_RUNTIME_PERMISSION_PRESENTER_SERVICE": 0.0,
45
+ "android.permission.BIND_SCREENING_SERVICE": 0.0,
46
+ "android.permission.BIND_TELECOM_CONNECTION_SERVICE": 0.0,
47
+ "android.permission.BIND_TEXT_SERVICE": 0.0,
48
+ "android.permission.BIND_TRUST_AGENT": 0.0,
49
+ "android.permission.BIND_TV_INPUT": 0.0,
50
+ "android.permission.BIND_TV_REMOTE_SERVICE": 0.0,
51
+ "android.permission.BIND_VOICE_INTERACTION": 0.0,
52
+ "android.permission.BIND_VPN_SERVICE": 0.0,
53
+ "android.permission.BIND_VR_LISTENER_SERVICE": 0.0,
54
+ "android.permission.BLUETOOTH_MAP": 0.0,
55
+ "android.permission.BLUETOOTH_PRIVILEGED": 0.0,
56
+ "android.permission.BRICK": 0.0,
57
+ "android.permission.BROADCAST_CALLLOG_INFO": 0.0,
58
+ "android.permission.BROADCAST_NETWORK_PRIVILEGED": 0.0,
59
+ "android.permission.android.permission.ACCESS_ALL_DOWNLOADS": 0.0,
60
+ "android.permission.CACHE_CONTENT": 0.0,
61
+ "android.permission.CAMERA_DISABLE_TRANSMIT_LED": 0.0,
62
+ "android.permission.CAMERA_SEND_SYSTEM_EVENTS": 0.0,
63
+ "android.permission.CAPTURE_AUDIO_HOTWORD": 0.0,
64
+ "android.permission.CAPTURE_AUDIO_OUTPUT": 0.0,
65
+ "android.permission.CAPTURE_SECURE_VIDEO_OUTPUT": 0.0,
66
+ "android.permission.CAPTURE_TV_INPUT": 0.0,
67
+ "android.permission.CAPTURE_VIDEO_OUTPUT": 0.0,
68
+ "android.permission.CARRIER_FILTER_SMS": 0.0,
69
+ "android.permission.CHANGE_BACKGROUND_DATA_SETTING": 0.0,
70
+ "android.permission.CHANGE_WIMAX_STATE": 0.0,
71
+ "android.permission.CLEAR_APP_GRANTED_URI_PERMISSIONS": 0.0,
72
+ "android.permission.CONFIGURE_DISPLAY_COLOR_TRANSFORM": 0.0,
73
+ "android.permission.CONFIGURE_WIFI_DISPLAY": 0.0,
74
+ "android.permission.CONFIRM_FULL_BACKUP": 0.0,
75
+ "android.permission.CONTROL_KEYGUARD": 0.0,
76
+ "android.permission.CONTROL_LOCATION_UPDATES": 0.0,
77
+ "android.permission.CONTROL_WIFI_DISPLAY": 0.0,
78
+ "android.permission.DIAGNOSTIC": 0.0,
79
+ "android.permission.DISPATCH_PROVISIONING_MESSAGE": 0.0,
80
+ "android.permission.DOWNLOAD_CACHE_NON_PURGEABLE": 0.0,
81
+ "android.permission.DVB_DEVICE": 0.0,
82
+ "android.permission.FACTORY_TEST": 0.0,
83
+ "android.permission.FILTER_EVENTS": 0.0,
84
+ "android.permission.FORCE_STOP_PACKAGES": 0.0,
85
+ "android.permission.FRAME_STATS": 0.0,
86
+ "android.permission.FREEZE_SCREEN": 0.0,
87
+ "android.permission.GET_APP_GRANTED_URI_PERMISSIONS": 0.0,
88
+ "android.permission.GET_PACKAGE_IMPORTANCE": 0.0,
89
+ "android.permission.GET_PASSWORD": 0.0,
90
+ "android.permission.GET_PROCESS_STATE_AND_OOM_SCORE": 0.0,
91
+ "android.permission.GLOBAL_SEARCH": 0.0,
92
+ "android.permission.GLOBAL_SEARCH_CONTROL": 0.0,
93
+ "android.permission.HARDWARE_TEST": 0.0,
94
+ "android.permission.HDMI_CEC": 0.0,
95
+ "android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS": 0.0,
96
+ "android.permission.INVOKE_CARRIER_SETUP": 0.0,
97
+ "android.permission.KILL_UID": 0.0,
98
+ "android.permission.LAUNCH_TRUST_AGENT_SETTINGS": 0.0,
99
+ "android.permission.LOCATION_HARDWARE": 0.0,
100
+ "android.permission.LOOP_RADIO": 0.0,
101
+ "android.permission.MANAGE_ACTIVITY_STACKS": 0.0,
102
+ "android.permission.MANAGE_APP_OPS_RESTRICTIONS": 0.0,
103
+ "android.permission.MANAGE_APP_TOKENS": 0.0,
104
+ "android.permission.MANAGE_CA_CERTIFICATES": 0.0,
105
+ "android.permission.MANAGE_DEVICE_ADMINS": 0.0,
106
+ "android.permission.MANAGE_DOCUMENTS": 0.0,
107
+ "android.permission.MANAGE_FINGERPRINT": 0.0,
108
+ "android.permission.MANAGE_MEDIA_PROJECTION": 0.0,
109
+ "android.permission.MANAGE_NETWORK_POLICY": 0.0,
110
+ "android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS": 0.0,
111
+ "android.permission.MANAGE_SOUND_TRIGGER": 0.0,
112
+ "android.permission.MANAGE_VOICE_KEYPHRASES": 0.0,
113
+ "android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS": 0.0,
114
+ "android.permission.MODIFY_CELL_BROADCASTS": 0.0,
115
+ "android.permission.MODIFY_NETWORK_ACCOUNTING": 0.0,
116
+ "android.permission.MODIFY_PARENTAL_CONTROLS": 0.0,
117
+ "android.permission.MOUNT_FORMAT_FILESYSTEMS": 0.0,
118
+ "android.permission.NET_ADMIN": 0.0,
119
+ "android.permission.NET_TUNNELING": 0.0,
120
+ "android.permission.NFC_HANDOVER_STATUS": 0.0,
121
+ "android.permission.NOTIFY_PENDING_SYSTEM_UPDATE": 0.0,
122
+ "android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS": 0.0,
123
+ "android.permission.OEM_UNLOCK_STATE": 0.0,
124
+ "android.permission.PACKAGE_VERIFICATION_AGENT": 0.0,
125
+ "android.permission.PACKET_KEEPALIVE_OFFLOAD": 0.0,
126
+ "android.permission.PERFORM_CDMA_PROVISIONING": 0.0,
127
+ "android.permission.PERFORM_SIM_ACTIVATION": 0.0,
128
+ "android.permission.PERSISTENT_ACTIVITY": 0.0,
129
+ "android.permission.PROCESS_CALLLOG_INFO": 0.0,
130
+ "android.permission.PROVIDE_TRUST_AGENT": 0.0,
131
+ "android.permission.QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT": 0.0,
132
+ "android.permission.READ_DREAM_STATE": 0.0,
133
+ "android.permission.READ_INPUT_STATE": 0.0,
134
+ "android.permission.READ_INSTALL_SESSIONS": 0.0,
135
+ "android.permission.READ_SEARCH_INDEXABLES": 0.0,
136
+ "android.permission.READ_SOCIAL_STREAM": 0.0,
137
+ "android.permission.READ_USER_DICTIONARY": 0.0,
138
+ "android.permission.READ_WIFI_CREDENTIAL": 0.0,
139
+ "android.permission.RECEIVE_BLUETOOTH_MAP": 0.0,
140
+ "android.permission.RECEIVE_DATA_ACTIVITY_CHANGE": 0.0,
141
+ "android.permission.RECEIVE_EMERGENCY_BROADCAST": 0.0,
142
+ "android.permission.RECEIVE_MEDIA_RESOURCE_USAGE": 0.0,
143
+ "android.permission.RECEIVE_STK_COMMANDS": 0.0,
144
+ "android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE": 0.0,
145
+ "android.permission.RECOVERY": 0.0,
146
+ "android.permission.REGISTER_CALL_PROVIDER": 0.0,
147
+ "android.permission.REGISTER_CONNECTION_MANAGER": 0.0,
148
+ "android.permission.REGISTER_SIM_SUBSCRIPTION": 0.0,
149
+ "android.permission.REGISTER_WINDOW_MANAGER_LISTENERS": 0.0,
150
+ "android.permission.REMOVE_DRM_CERTIFICATES": 0.0,
151
+ "android.permission.REMOVE_TASKS": 0.0,
152
+ "android.permission.RESET_FINGERPRINT_LOCKOUT": 0.0,
153
+ "android.permission.RESET_SHORTCUT_MANAGER_THROTTLING": 0.0,
154
+ "android.permission.RETRIEVE_WINDOW_CONTENT": 0.0,
155
+ "android.permission.SCORE_NETWORKS": 0.0,
156
+ "android.permission.SEND_RESPOND_VIA_MESSAGE": 0.0,
157
+ "android.permission.SEND_SMS_NO_CONFIRMATION": 0.0,
158
+ "android.permission.SERIAL_PORT": 0.0,
159
+ "android.permission.SET_ALWAYS_FINISH": 0.0,
160
+ "android.permission.SET_ANIMATION_SCALE": 0.0,
161
+ "android.permission.SET_INPUT_CALIBRATION": 0.0,
162
+ "android.permission.SET_KEYBOARD_LAYOUT": 0.0,
163
+ "android.permission.SET_ORIENTATION": 0.0,
164
+ "android.permission.SET_POINTER_SPEED": 0.0,
165
+ "android.permission.SET_PREFERRED_APPLICATIONS": 0.0,
166
+ "android.permission.SET_PROCESS_LIMIT": 0.0,
167
+ "android.permission.SET_TIME": 0.0,
168
+ "android.permission.SET_WALLPAPER_HINTS": 0.0,
169
+ "android.permission.START_ANY_ACTIVITY": 0.0,
170
+ "android.permission.START_TASKS_FROM_RECENTS": 0.0,
171
+ "android.permission.STORAGE_INTERNAL": 0.0,
172
+ "android.permission.SUBSCRIBED_FEEDS_WRITE": 0.0,
173
+ "android.permission.TABLET_MODE": 0.0,
174
+ "android.permission.TEMPORARY_ENABLE_ACCESSIBILITY": 0.0,
175
+ "android.permission.TRUST_LISTENER": 0.0,
176
+ "android.permission.TV_INPUT_HARDWARE": 0.0,
177
+ "android.permission.TV_VIRTUAL_REMOTE_CONTROLLER": 0.0,
178
+ "android.permission.UPDATE_CONFIG": 0.0,
179
+ "android.permission.UPDATE_LOCK": 0.0,
180
+ "android.permission.UPDATE_LOCK_TASK_PACKAGES": 0.0,
181
+ "android.permission.WRITE_DREAM_STATE": 0.0,
182
+ "android.permission.WRITE_GSERVICES": 0.0,
183
+ "android.permission.WRITE_PROFILE": 0.0,
184
+ "android.permission.WRITE_SOCIAL_STREAM": 0.0,
185
+ "android.permission.WRITE_USER_DICTIONARYCACHE_CONTENT": 0.0,
186
+ "android.permission.BIND_INCALL_SERVICE": 2.3581681476419717e-06,
187
+ "android.permission.BIND_DEVICE_ADMIN": 3.5559678416821885e-06,
188
+ "android.permission.GET_DETAILED_TASKS": 1.0714285714285379e-05,
189
+ "android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION": 2.0439381898074015e-05,
190
+ "android.permission.CRYPT_KEEPER": 2.358936684124777e-05,
191
+ "android.permission.FORCE_BACK": 3.541512687854153e-05,
192
+ "android.permission.INSTALL_LOCATION_PROVIDER": 3.588068890922859e-05,
193
+ "android.permission.DUMP": 4.0488027438542116e-05,
194
+ "android.permission.GET_PACKAGE_SIZE": 6.600765306122452e-05,
195
+ "android.permission.ACCESS_KEYGUARD_SECURE_STORAGE": 6.63204546699692e-05,
196
+ "android.permission.ACCESS_SURFACE_FLINGER": 6.641256641256639e-05,
197
+ "android.permission.UPDATE_DEVICE_STATS": 7.247899159663838e-05,
198
+ "android.permission.SHUTDOWN": 8.457364921740765e-05,
199
+ "android.permission.MOVE_PACKAGE": 9.47802197802198e-05,
200
+ "android.permission.MANAGE_USB": 0.00013598676713285834,
201
+ "android.permission.REMOTE_AUDIO_PLAYBACK": 0.0001433264591159318,
202
+ "android.permission.GET_TOP_ACTIVITY_INFO": 0.00014563198128963748,
203
+ "android.permission.SIGNAL_PERSISTENT_PROCESSES": 0.00015101638681184093,
204
+ "android.permission.READ_BLOCKED_NUMBERS": 0.00015126237348459483,
205
+ "android.permission.SET_WALLPAPER_COMPONENT": 0.00016627902029402988,
206
+ "android.permission.INJECT_EVENTS": 0.0001770584777120706,
207
+ "android.permission.WRITE_USER_DICTIONARY": 0.0001996591185780381,
208
+ "android.permission.TRANSMIT_IR": 0.0002087872185911402,
209
+ "android.permission.READ_NETWORK_USAGE_HISTORY": 0.0002124907612712491,
210
+ "android.permission.MODIFY_DAY_NIGHT_MODE": 0.00021993574051407572,
211
+ "android.permission.CONTROL_INCALL_EXPERIENCE": 0.0002208141321044547,
212
+ "android.permission.SEND_CALL_LOG_CHANGE": 0.0002316361246569526,
213
+ "android.permission.ACCESS_NOTIFICATIONS": 0.0002444727891156462,
214
+ "android.permission.COPY_PROTECTED_DATA": 0.0002553104575163398,
215
+ "android.permission.SET_DEBUG_APP": 0.000258659469185785,
216
+ "android.permission.CHANGE_APP_IDLE_STATE": 0.0002711846461846461,
217
+ "android.permission.ACCESS_MTP": 0.00028942125848389156,
218
+ "android.permission.WRITE_BLOCKED_NUMBERS": 0.00031489594742606803,
219
+ "android.permission.BIND_NFC_SERVICE": 0.00031839580730709744,
220
+ "android.permission.ACCESS_VR_MANAGER": 0.00035087852013233276,
221
+ "android.permission.BACKUP": 0.0003659301789637839,
222
+ "android.permission.PEERS_MAC_ADDRESS": 0.00037185883222468595,
223
+ "android.permission.RETRIEVE_WINDOW_TOKEN": 0.00037885918674698794,
224
+ "android.permission.SET_TIME_ZONE": 0.0003907099369428135,
225
+ "android.permission.BLUETOOTH_STACK": 0.0003945775180714943,
226
+ "android.permission.DISPATCH_NFC_MESSAGE": 0.0004362098112098108,
227
+ "android.permission.BIND_DIRECTORY_SEARCH": 0.0004380997763419641,
228
+ "android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST": 0.00044271397431586786,
229
+ "android.permission.GET_INTENT_SENDER_INTENT": 0.00044463856111811196,
230
+ "android.permission.TETHER_PRIVILEGED": 0.00044697059863539504,
231
+ "android.permission.GET_APP_OPS_STATS": 0.00047295832542709374,
232
+ "android.permission.FLASHLIGHT": 0.00047907812884946985,
233
+ "android.permission.USER_ACTIVITY": 0.0005068870523415984,
234
+ "android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION": 0.0005137232101615344,
235
+ "android.permission.ACCESS_BLUETOOTH_SHARE": 0.0005218843198418364,
236
+ "android.permission.OVERRIDE_WIFI_CONFIG": 0.0005300951975498846,
237
+ "android.permission.MANAGE_NOTIFICATIONS": 0.0005313005313005312,
238
+ "android.permission.DEVICE_POWER": 0.0005333070800142958,
239
+ "android.permission.MEDIA_CONTENT_CONTROL": 0.0006110405854857903,
240
+ "android.permission.SET_SCREEN_COMPATIBILITY": 0.0006241679309202618,
241
+ "android.permission.GET_ACCOUNTS_PRIVILEGED": 0.0006528828026186985,
242
+ "android.permission.ACCESS_ALL_DOWNLOADS": 0.0006711936611780281,
243
+ "android.permission.SET_ACTIVITY_WATCHER": 0.000688101441265998,
244
+ "android.permission.SUBSCRIBED_FEEDS_READ": 0.0007191848205557883,
245
+ "android.permission.DISABLE_KEYGUARD": 0.000728526220245477,
246
+ "android.permission.REVOKE_RUNTIME_PERMISSIONS": 0.0008025276074953263,
247
+ "android.permission.REAL_GET_TASKS": 0.0008026046338546365,
248
+ "android.permission.READ_SYNC_SETTINGS": 0.0008391960018354132,
249
+ "android.permission.GRANT_RUNTIME_PERMISSIONS": 0.00085211732930065,
250
+ "android.permission.STOP_APP_SWITCHES": 0.0008849369206495518,
251
+ "android.permission.CREATE_USERS": 0.0008982903482696866,
252
+ "android.permission.READ_FRAME_BUFFER": 0.0009035714285714288,
253
+ "android.permission.CALL_PRIVILEGED": 0.0009629715353869405,
254
+ "android.permission.STATUS_BAR": 0.0009824982782046464,
255
+ "android.permission.CHANGE_COMPONENT_ENABLED_STATE": 0.0010207853356058944,
256
+ "android.permission.REQUEST_INSTALL_PACKAGES": 0.0010515103518906608,
257
+ "android.permission.DELETE_CACHE_FILES": 0.0011957243653227586,
258
+ "android.permission.STATUS_BAR_SERVICE": 0.0012049216146589913,
259
+ "android.permission.ACCESS_DOWNLOAD_MANAGER": 0.0012203450735132767,
260
+ "android.permission.INTENT_FILTER_VERIFICATION_AGENT": 0.0012464008125131617,
261
+ "android.permission.BROADCAST_SMS": 0.0012706680860043085,
262
+ "android.permission.BIND_WALLPAPER": 0.0012856431248604227,
263
+ "android.permission.START_PRINT_SERVICE_CONFIG_ACTIVITY": 0.001464869589114707,
264
+ "android.permission.READ_SYNC_STATS": 0.001528555901511666,
265
+ "android.permission.MODIFY_AUDIO_ROUTING": 0.0015813750618622615,
266
+ "android.permission.MASTER_CLEAR": 0.0016437394899916716,
267
+ "android.permission.BIND_CARRIER_SERVICES": 0.0016479150127368528,
268
+ "android.permission.BROADCAST_WAP_PUSH": 0.0016615421555002357,
269
+ "android.permission.LOCAL_MAC_ADDRESS": 0.001721047894585582,
270
+ "android.permission.CLEAR_APP_USER_DATA": 0.0018920857010222825,
271
+ "android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS": 0.00189939928179308,
272
+ "android.permission.EXPAND_STATUS_BAR": 0.0019800025835586964,
273
+ "android.permission.BROADCAST_PACKAGE_REMOVED": 0.0020895051392456543,
274
+ "android.permission.INTERNAL_SYSTEM_WINDOW": 0.0021033231831248523,
275
+ "android.permission.UPDATE_APP_OPS_STATS": 0.002227881116151777,
276
+ "android.permission.READ_PRECISE_PHONE_STATE": 0.0022339773931326916,
277
+ "android.permission.REORDER_TASKS": 0.0022905589770054018,
278
+ "android.permission.READ_PROFILE": 0.002350049252620653,
279
+ "android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME": 0.0026912000178107016,
280
+ "android.permission.CONTROL_VPN": 0.002779980431967564,
281
+ "android.permission.BATTERY_STATS": 0.0027921471814704208,
282
+ "android.permission.ACCESS_MOCK_LOCATION": 0.0029139534469208245,
283
+ "android.permission.CHANGE_CONFIGURATION": 0.0030094920598613024,
284
+ "android.permission.READ_OEM_UNLOCK_STATE": 0.0030108684372664573,
285
+ "android.permission.CLEAR_APP_CACHE": 0.003473560848205689,
286
+ "android.permission.READ_LOGS": 0.0037950112292192517,
287
+ "android.permission.WRITE_SYNC_SETTINGS": 0.003928029293643143,
288
+ "android.permission.REBOOT": 0.003947905987547195,
289
+ "android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS": 0.003993492161391373,
290
+ "android.permission.MODIFY_AUDIO_SETTINGS": 0.004121216973199242,
291
+ "android.permission.NFC": 0.004133915708722107,
292
+ "android.permission.INTERACT_ACROSS_USERS_FULL": 0.004238567962458395,
293
+ "android.permission.CONNECTIVITY_INTERNAL": 0.004390162794060207,
294
+ "android.permission.WRITE_SECURE_SETTINGS": 0.004456849437612022,
295
+ "android.permission.AUTHENTICATE_ACCOUNTS": 0.004516935210329915,
296
+ "android.permission.BROADCAST_STICKY": 0.004810906191931197,
297
+ "android.permission.MANAGE_USERS": 0.005158822914323014,
298
+ "android.permission.ACCESS_NOTIFICATION_POLICY": 0.005256397821908367,
299
+ "android.permission.CHANGE_NETWORK_STATE": 0.005699815000363686,
300
+ "android.permission.DELETE_PACKAGES": 0.005973369035181792,
301
+ "android.permission.PACKAGE_USAGE_STATS": 0.006270510312365077,
302
+ "android.permission.BLUETOOTH_ADMIN": 0.006463547754603444,
303
+ "android.permission.WRITE_MEDIA_STORAGE": 0.006713011322447824,
304
+ "android.permission.CHANGE_WIFI_MULTICAST_STATE": 0.006904486590726039,
305
+ "android.permission.MODIFY_PHONE_STATE": 0.007240846261408641,
306
+ "android.permission.WRITE_APN_SETTINGS": 0.0073899437543908045,
307
+ "android.permission.MOUNT_UNMOUNT_FILESYSTEMS": 0.007579246447161441,
308
+ "android.permission.INSTALL_PACKAGES": 0.00909328273001448,
309
+ "android.permission.CHANGE_WIFI_STATE": 0.009454277665923992,
310
+ "android.permission.RESTART_PACKAGES": 0.009494975964757256,
311
+ "android.permission.BLUETOOTH": 0.010347563715776392,
312
+ "android.permission.WRITE_SETTINGS": 0.010527505006360714,
313
+ "android.permission.SET_WALLPAPER": 0.010631933006215302,
314
+ "android.permission.MANAGE_ACCOUNTS": 0.01103857346952233,
315
+ "android.permission.KILL_BACKGROUND_PROCESSES": 0.013440070239968177,
316
+ "android.permission.INTERACT_ACROSS_USERS": 0.013537440717104303,
317
+ "android.permission.VIBRATE": 0.014552026201336816,
318
+ "android.permission.READ_EXTERNAL_STORAGE": 0.015178371582936114,
319
+ "android.permission.USE_CREDENTIALS": 0.01797655668413146,
320
+ "android.permission.READ_PRIVILEGED_PHONE_STATE": 0.018251395713628174,
321
+ "android.permission.SYSTEM_ALERT_WINDOW": 0.019091367939223395,
322
+ "android.permission.ACCESS_NETWORK_STATE": 0.021001765263234648,
323
+ "android.permission.ACCESS_WIFI_STATE": 0.02198962579120518,
324
+ "android.permission.RECEIVE_BOOT_COMPLETED": 0.026398914436102188,
325
+ "android.permission.GET_TASKS": 0.03595458598076517,
326
+ "android.permission.WAKE_LOCK": 0.03908212881520419,
327
+ "android.permission.WRITE_SMS": 0.057041576632290585,
328
+ "android.permission.INTERNET": 0.08816028225034145,
329
+ "android.permission.WRITE_EXTERNAL_STORAGE": 0.09835914154294739,
330
+ "other_permission": 0.10189463965313218,
331
+ "num_of_permissions": 0.12392224814084198
332
+ }
requirements.txt ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ androguard==3.3.5
2
+ asn1crypto==1.5.1
3
+ asttokens==2.0.5
4
+ backcall==0.2.0
5
+ click==8.1.3
6
+ colorama==0.4.4
7
+ cycler==0.11.0
8
+ decorator==5.1.1
9
+ executing==0.8.3
10
+ fonttools==4.33.3
11
+ future==0.18.2
12
+ ipython==8.3.0
13
+ jedi==0.18.1
14
+ joblib==1.1.0
15
+ kiwisolver==1.4.2
16
+ lxml==4.8.0
17
+ matplotlib==3.5.2
18
+ matplotlib-inline==0.1.3
19
+ networkx==2.8
20
+ numpy==1.22.3
21
+ packaging==21.3
22
+ pandas==1.4.2
23
+ parso==0.8.3
24
+ pexpect==4.8.0
25
+ pickleshare==0.7.5
26
+ Pillow==9.1.0
27
+ prompt-toolkit==3.0.29
28
+ ptyprocess==0.7.0
29
+ pure-eval==0.2.2
30
+ pydot==1.4.2
31
+ Pygments==2.12.0
32
+ pyparsing==3.0.8
33
+ python-dateutil==2.8.2
34
+ pytz==2022.1
35
+ scikit-learn==1.0.2
36
+ scipy==1.8.0
37
+ six==1.16.0
38
+ stack-data==0.2.0
39
+ threadpoolctl==3.1.0
40
+ traitlets==5.2.0
41
+ wcwidth==0.2.5