-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathpSettings.py
executable file
·50 lines (42 loc) · 1.66 KB
/
pSettings.py
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
import sqlite3
import textwrap
from scripts.artifact_report import ArtifactHtmlReport
from scripts.ilapfuncs import logfunc, tsv, is_platform_windows, open_sqlite_db_readonly
def get_pSettings(files_found, report_folder, seeker, wrap_text, time_offset):
data_list = []
for file_found in files_found:
file_found = str(file_found)
if file_found.endswith('googlesettings.db'):
db = open_sqlite_db_readonly(file_found)
cursor = db.cursor()
cursor.execute('''
select
name,
value
from partner
''')
all_rows = cursor.fetchall()
usageentries = len(all_rows)
if usageentries > 0:
for row in all_rows:
data_list.append((row[0],row[1],file_found))
db.close()
else:
continue
if data_list:
report = ArtifactHtmlReport('Partner Settings')
report.start_artifact_report(report_folder, 'Partner Settings')
report.add_script()
data_headers = ('Name','Value','Source File') # Don't remove the comma, that is required to make this a tuple as there is only 1 element
report.write_artifact_data_table(data_headers, data_list, file_found)
report.end_artifact_report()
tsvname = f'partner settings'
tsv(report_folder, data_headers, data_list, tsvname)
else:
logfunc('No Partner Settings data available')
__artifacts__ = {
"pSettings": (
"Device Info",
('*/com.google.android.gsf/databases/googlesettings.db*'),
get_pSettings)
}