On running python3 collector.py -o all -sn case_001_john, "extract_all_data" function, extracts all available .db files and stores them following proper data hierarchy.
But
On running python3 collector.py -o general_info -sn case_001_john we get the following error.
On running python3 collector.py -o facebook whatsapp phone -sn case_001_john we get the same error and the following files
contacts.tsv, messages.tsv (extracted from Facebook data)
wa_contacts.tsv, wa_messages.tsv (extracted from Whatsapp data)
messages_conversation.tsv, phone_contacts.tsv and phone_calllogs.tsv (extracted from Phone data)
get stored in the project directory and not in data/session-name/facebook-whatsapp-phone directory.
Therefore the current code is capable of storing "all extracted" data properly but fails when we try to explicitly save data of general_info, facebook, whatsapp, phone.
So, there is some issue in collect_data function and general_info.py, wa_reader.py, phone.py files.
On running
python3 collector.py -o all -sn case_001_john
, "extract_all_data" function, extracts all available.db
files and stores them following proper data hierarchy.But On running
python3 collector.py -o general_info -sn case_001_john
we get the following error. On runningpython3 collector.py -o facebook whatsapp phone -sn case_001_john
we get the same error and the following filescontacts.tsv
,messages.tsv
(extracted from Facebook data)wa_contacts.tsv
,wa_messages.tsv
(extracted from Whatsapp data)messages_conversation.tsv
,phone_contacts.tsv
andphone_calllogs.tsv
(extracted from Phone data)get stored in the project directory and not in
data/session-name/facebook-whatsapp-phone
directory. Therefore the current code is capable of storing "all extracted" data properly but fails when we try to explicitly save data ofgeneral_info
,facebook
,whatsapp
,phone
. So, there is some issue incollect_data
function andgeneral_info.py
,wa_reader.py
,phone.py
files.