mvt/mvt/ios/modules/fs/safari_favicon.py

97 lines
3.3 KiB
Python
Raw Normal View History

2021-07-16 06:05:01 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021 The MVT Project Authors.
# Use of this software is governed by the MVT License 1.1 that can be found at
# https://license.mvt.re/1.1/
2021-07-16 06:05:01 +00:00
import sqlite3
from mvt.common.utils import convert_mactime_to_unix, convert_timestamp_to_iso
2021-08-15 11:14:18 +00:00
from ..base import IOSExtraction
2021-07-16 06:05:01 +00:00
SAFARI_FAVICON_ROOT_PATHS = [
"private/var/mobile/Library/Image Cache/Favicons/Favicons.db",
"private/var/mobile/Containers/Data/Application/*/Library/Image Cache/Favicons/Favicons.db",
]
2021-11-19 14:27:51 +00:00
2021-07-16 06:05:01 +00:00
class SafariFavicon(IOSExtraction):
"""This module extracts all Safari favicon records."""
def __init__(self, file_path=None, base_folder=None, output_folder=None,
fast_mode=False, log=None, results=[]):
super().__init__(file_path=file_path, base_folder=base_folder,
output_folder=output_folder, fast_mode=fast_mode,
log=log, results=results)
def serialize(self, record):
return {
"timestamp": record["isodate"],
"module": self.__class__.__name__,
"event": "safari_favicon",
"data": f"Safari favicon from {record['url']} with icon URL {record['icon_url']} ({record['type']})",
}
def check_indicators(self):
if not self.indicators:
return
for result in self.results:
if self.indicators.check_domain(result["url"]) or self.indicators.check_domain(result["icon_url"]):
self.detected.append(result)
2021-08-16 08:50:35 +00:00
def _process_favicon_db(self, file_path):
conn = sqlite3.connect(file_path)
2021-07-16 06:05:01 +00:00
# Fetch valid icon cache.
cur = conn.cursor()
2021-08-16 08:50:35 +00:00
cur.execute("""
SELECT
2021-07-16 06:05:01 +00:00
page_url.url,
icon_info.url,
icon_info.timestamp
FROM page_url
JOIN icon_info ON page_url.uuid = icon_info.uuid
2021-08-16 08:50:35 +00:00
ORDER BY icon_info.timestamp;
""")
for row in cur:
self.results.append({
"url": row[0],
"icon_url": row[1],
"timestamp": row[2],
"isodate": convert_timestamp_to_iso(convert_mactime_to_unix(row[2])),
2021-08-15 17:05:15 +00:00
"type": "valid",
2021-08-16 08:50:35 +00:00
"safari_favicon_db_path": file_path,
2021-08-15 17:05:15 +00:00
})
2021-07-16 06:05:01 +00:00
# Fetch icons from the rejected icons table.
2021-08-16 08:50:35 +00:00
cur.execute("""
SELECT
2021-07-16 06:05:01 +00:00
page_url,
icon_url,
timestamp
2021-08-16 08:50:35 +00:00
FROM rejected_resources ORDER BY timestamp;
""")
for row in cur:
self.results.append({
"url": row[0],
"icon_url": row[1],
"timestamp": row[2],
"isodate": convert_timestamp_to_iso(convert_mactime_to_unix(row[2])),
2021-08-15 17:05:15 +00:00
"type": "rejected",
2021-08-16 08:50:35 +00:00
"safari_favicon_db_path": file_path,
2021-08-15 17:05:15 +00:00
})
2021-07-16 06:05:01 +00:00
cur.close()
conn.close()
2021-08-16 08:50:35 +00:00
def run(self):
for file_path in self._get_fs_files_from_patterns(SAFARI_FAVICON_ROOT_PATHS):
self.log.info("Found Safari favicon cache database at path: %s", file_path)
self._process_favicon_db(file_path)
self.log.info("Extracted a total of %d favicon records", len(self.results))
self.results = sorted(self.results, key=lambda x: x["isodate"])