leaks2sqlite3 is a simple python3 parser to import 03/04/2021 published facebook leaks, from a csv to a SQLite3 DB.
The script automatically goes past the malformed csv lines and creates indexes for phone numbers, names, surnames, facebook_id.
- python3
- sqlite3
apt install -y python3
apt install -y sqlite3
Change the informations in the first 2 assignment and simply run
./leakrecord.py
Before you run leakrecord.py you must adjust the csv file because is full of "12:00:00" strings
which are inteded to represent time, while the csv delimiter is the character ":".
sed -i 's^12:00:00^12.00.00^g' your_filelist.csv