File size: 2,010 Bytes
e12cd0f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #!/usr/bin/env python3
import re
import requests
from bs4 import BeautifulSoup as Soup
from bs4 import element
ANDROID_PERMISSION_DOCS_URL = ('https://developer.android.com/'
'reference/android/Manifest.permission')
response = requests.get(ANDROID_PERMISSION_DOCS_URL, timeout=5)
content = Soup(response.content, 'html.parser')
online_permissions = {}
# grab all the permissions from the online docs
permission_divs = content.find_all(
'div', {'data-version-added': re.compile(r'\d*')})
for pd in permission_divs:
permission_name = pd.find('h3').contents[0]
if permission_name in ['Constants', 'Manifest.permission']:
continue
try:
protection_level = re.search(
r'Protection level\: (\w+)', str(pd)).groups()[0]
except AttributeError:
protection_level = 'normal'
desc = []
for a in pd.find('p').contents:
if type(a) is element.NavigableString:
desc.append(str(a).strip().replace(
'\n', '').replace('\t', '').replace('\xa0', ''))
elif type(a) is element.Tag:
if 'Protection level:' in a.text:
break
desc.append(str(a.text).strip().replace(
'\n', '').replace('\t', '').replace('\xa0', ''))
description = ' '.join(desc)
online_permissions[permission_name] = [protection_level,
'',
description]
# check the permissions we currently have in dvm_permissions.py
DVM_PERMISSIONS = {}
eval(compile(open('../mobsf/StaticAnalyzer/views/'
'android/kb/dvm_permissions.py').read(),
'<string>',
'exec'))
MANIFEST_PERMISSIONS = DVM_PERMISSIONS['MANIFEST_PERMISSION']
for permission_name in online_permissions:
if permission_name in MANIFEST_PERMISSIONS.keys():
continue
print('\'{}\': {},'.format(permission_name, str(
online_permissions[permission_name])))
|