-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #969 from snoop168/CallHistoryTransactions
call history temp and transactions artifacts
- Loading branch information
Showing
2 changed files
with
192 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
__artifacts_v2__ = { | ||
"callHistoryTemp": { | ||
"name": "Call History Temp", | ||
"description": "Extract Call History Temp", | ||
"author": "@AlexisBrignoni", | ||
"version": "0.7", | ||
"date": "2020-04-30", | ||
"requirements": "none", | ||
"category": "Call History", | ||
"notes": "", | ||
"paths": ('*/private/var/mobile/Library/CallHistoryDB/CallHistoryTemp.storedata*',), | ||
"output_types": "standard" | ||
} | ||
} | ||
|
||
# Updates: @SQLMcGee, James McGee of Metadata Forensics, LLC | ||
# Date: 2023-03-30 Added column within callHistory for Call Ending Timestamp | ||
# The Call Ending Timestamp provides an "at-a-glance" review of call lengths during analysis and review | ||
# Additional details published within "Maximizing iOS Call Log Timestamps and Call Duration Effectiveness: Will You Answer the Call?" at https://sqlmcgee.wordpress.com/2022/11/30/maximizing-ios-call-log-timestamps-and-call-duration-effectiveness-will-you-answer-the-call/ | ||
|
||
from scripts.ilapfuncs import artifact_processor , open_sqlite_db_readonly, convert_bytes_to_unit, convert_ts_human_to_timezone_offset | ||
|
||
@artifact_processor | ||
def callHistoryTemp(files_found, report_folder, seeker, wrap_text, timezone_offset): | ||
data_list = [] | ||
db_file = '' | ||
|
||
#call_history.db schema taken from here https://avi.alkalay.net/2011/12/iphone-call-history.html | ||
query = ''' | ||
select | ||
datetime(ZDATE+978307200,'unixepoch'), | ||
CASE | ||
WHEN ((datetime(ZDATE+978307200,'unixepoch')) = (datetime(((ZDATE) + (ZDURATION))+978307200,'unixepoch'))) then NULL | ||
ELSE (datetime(((ZDATE) + (ZDURATION))+978307200,'unixepoch')) | ||
END, | ||
ZSERVICE_PROVIDER, | ||
CASE ZCALLTYPE | ||
WHEN 0 then 'Third-Party App' | ||
WHEN 1 then 'Phone Call' | ||
WHEN 8 then 'FaceTime Video' | ||
WHEN 16 then 'FaceTime Audio' | ||
ELSE ZCALLTYPE | ||
END, | ||
CASE ZORIGINATED | ||
WHEN 0 then 'Incoming' | ||
WHEN 1 then 'Outgoing' | ||
END, | ||
ZADDRESS, | ||
CASE ZANSWERED | ||
WHEN 0 then 'No' | ||
WHEN 1 then 'Yes' | ||
END, | ||
strftime('%H:%M:%S',ZDURATION, 'unixepoch'), | ||
ZFACE_TIME_DATA, | ||
CASE | ||
WHEN ZDISCONNECTED_CAUSE = 6 AND ZSERVICE_PROVIDER LIKE '%whatsapp' AND ZDURATION <> '0.0' then 'Ended' | ||
WHEN ZDISCONNECTED_CAUSE = 6 AND ZSERVICE_PROVIDER LIKE '%whatsapp' AND ZORIGINATED = 1 then 'Missed or Rejected' | ||
WHEN ZDISCONNECTED_CAUSE = 2 AND ZSERVICE_PROVIDER LIKE '%whatsapp' then 'Rejected' | ||
WHEN ZDISCONNECTED_CAUSE = 6 AND ZSERVICE_PROVIDER LIKE '%whatsapp' then 'Missed' | ||
WHEN ZDISCONNECTED_CAUSE = 0 then 'Ended' | ||
WHEN ZDISCONNECTED_CAUSE = 6 then 'Rejected' | ||
ELSE ZDISCONNECTED_CAUSE | ||
END ZDISCONNECTED_CAUSE, | ||
upper(ZISO_COUNTRY_CODE), | ||
ZLOCATION | ||
from ZCALLRECORD | ||
''' | ||
|
||
query_old = ''' | ||
select | ||
datetime(date, 'unixepoch'), | ||
CASE | ||
WHEN datetime(date,'unixepoch') = datetime((date + duration),'unixepoch') then NULL | ||
ELSE datetime((date + duration), 'unixepoch') | ||
END, | ||
'N/A' as ZSERVICE_PROVIDER, | ||
CASE | ||
WHEN flags&4=4 then 'Phone Call' | ||
When flags&16=16 then 'FaceTime Call' | ||
END, | ||
CASE | ||
WHEN flags=0 then 'Incoming' | ||
WHEN flags&1=1 then 'Outgoing' | ||
END, | ||
address, | ||
CASE read | ||
WHEN 0 then 'No' | ||
WHEN 1 then 'Yes' | ||
END, | ||
strftime('%H:%M:%S', duration, 'unixepoch'), | ||
face_time_data, | ||
'N/A' as ZDISCONNECTED_CAUSE, | ||
country_code, | ||
'N/A' as ZLOCATION | ||
from call | ||
''' | ||
|
||
for file_found in files_found: | ||
if file_found.endswith('.storedata'): | ||
db_file = file_found | ||
break | ||
elif file_found.endswith('.db'): | ||
db_file = file_found | ||
query = query_old | ||
break | ||
|
||
with open_sqlite_db_readonly(db_file) as db: | ||
cursor = db.cursor() | ||
cursor.execute(query) | ||
|
||
all_rows = cursor.fetchall() | ||
|
||
for row in all_rows: | ||
starting_time = convert_ts_human_to_timezone_offset(row[0], timezone_offset) | ||
ending_time = convert_ts_human_to_timezone_offset(row[1], timezone_offset) | ||
|
||
an = str(row[5]) | ||
an = an.replace("b'", "") | ||
an = an.replace("'", "") | ||
|
||
facetime_data = convert_bytes_to_unit(row[8]) | ||
|
||
data_list.append((starting_time, ending_time, row[2], row[3], row[4], an, row[6], | ||
row[7], facetime_data, row[9], row[10], row[11])) | ||
|
||
data_headers = ( | ||
('Starting Timestamp', 'datetime'), | ||
('Ending Timestamp', 'datetime'), | ||
'Service Provider', | ||
'Call Type', | ||
'Call Direction', | ||
('Phone Number', 'phonenumber'), | ||
'Answered', | ||
'Call Duration', | ||
'FaceTime Data', | ||
'Disconnected Cause', | ||
'ISO Country Code', | ||
'Location' | ||
) | ||
return data_headers, data_list, db_file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
__artifacts_v2__ = { | ||
"callHistoryTransactions": { | ||
"name": "Call History Transactions", | ||
"description": "Parses transaction.log file in Call History Transactions", | ||
"author": "@JohnHyla", | ||
"version": "0.0.1", | ||
"date": "2024-12-11", | ||
"requirements": "none", | ||
"category": "Call History", | ||
"notes": "", | ||
"paths": ('*/var/mobile/Library/CallHistoryTransactions/transactions.log*'), | ||
"output_types": "standard" | ||
} | ||
} | ||
|
||
import os | ||
import blackboxprotobuf | ||
from datetime import * | ||
import struct | ||
import nska_deserialize as nd | ||
from scripts.ilapfuncs import artifact_processor, webkit_timestampsconv, convert_ts_human_to_timezone_offset, \ | ||
convert_plist_date_to_timezone_offset | ||
|
||
|
||
@artifact_processor | ||
def callHistoryTransactions(files_found, report_folder, seeker, wrap_text, timezone_offset): | ||
data_list = [] | ||
|
||
for file_found in files_found: | ||
file_found = str(file_found) | ||
with open(file_found, 'rb') as file: | ||
file.seek(0, 2) | ||
file_size = file.tell() | ||
file.seek(0) | ||
|
||
while file.tell() < file_size: | ||
length = struct.unpack('<I', file.read(4))[0] | ||
plist_data = file.read(length) | ||
ds_plist = nd.deserialize_plist_from_string(plist_data) | ||
inner_record = nd.deserialize_plist_from_string(ds_plist['record']) | ||
date = convert_plist_date_to_timezone_offset(inner_record.get('date', ''), timezone_offset) | ||
data_list.append([date, inner_record['handleType'], inner_record['callStatus'], | ||
inner_record['duration'], inner_record['remoteParticipantHandles'][0]['value'], | ||
inner_record['callerId'], inner_record['timeToEstablish'], | ||
inner_record['disconnectedCause'], inner_record['uniqueId']]) | ||
|
||
data_headers = [('Date', 'datetime'), 'handleType', 'callStatus', 'duration', 'remoteParticipantHandle', 'callerId', | ||
'timeToEstablish', 'disconnectedCause', 'uniqueId'] | ||
|
||
return data_headers, data_list, file_found | ||
|
||
|