mvt/mvt/ios/modules/mixed/calls.py

64 lines
2.1 KiB
Python
Raw Normal View History

2021-07-16 06:05:01 +00:00
# Mobile Verification Toolkit (MVT)
# Copyright (c) 2021-2022 Claudio Guarnieri.
# 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-07-30 09:40:09 +00:00
2021-08-15 11:14:18 +00:00
from ..base import IOSExtraction
2021-07-16 06:05:01 +00:00
CALLS_BACKUP_IDS = [
"5a4935c78a5255723f707230a451d79c540d2741",
]
CALLS_ROOT_PATHS = [
"private/var/mobile/Library/CallHistoryDB/CallHistory.storedata"
]
2021-11-19 14:27:51 +00:00
2021-07-16 06:05:01 +00:00
class Calls(IOSExtraction):
"""This module extracts phone calls details"""
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": "call",
"data": f"From {record['number']} using {record['provider']} during {record['duration']} seconds"
}
def run(self):
2021-08-16 08:50:35 +00:00
self._find_ios_database(backup_ids=CALLS_BACKUP_IDS,
root_paths=CALLS_ROOT_PATHS)
2021-07-16 06:05:01 +00:00
self.log.info("Found Calls database at path: %s", self.file_path)
conn = sqlite3.connect(self.file_path)
cur = conn.cursor()
cur.execute("""
SELECT
ZDATE, ZDURATION, ZLOCATION, ZADDRESS, ZSERVICE_PROVIDER
2021-08-16 08:50:35 +00:00
FROM ZCALLRECORD;
2021-07-16 06:05:01 +00:00
""")
2021-11-19 14:27:51 +00:00
# names = [description[0] for description in cur.description]
2021-07-16 06:05:01 +00:00
2021-08-16 08:50:35 +00:00
for row in cur:
2021-07-16 06:05:01 +00:00
self.results.append({
2021-08-16 08:50:35 +00:00
"isodate": convert_timestamp_to_iso(convert_mactime_to_unix(row[0])),
"duration": row[1],
"location": row[2],
"number": row[3].decode("utf-8") if row[3] and row[3] is bytes else row[3],
"provider": row[4]
2021-07-16 06:05:01 +00:00
})
cur.close()
conn.close()
self.log.info("Extracted a total of %d calls", len(self.results))