├── Other SQLite Parsers ├── LICENSE ├── Requirements.txt ├── SF_Freelist_Pages.py ├── SF_SQLite_Header_Parser.py └── SF_SQLite_Page_Info.py ├── README.md └── SQBite ├── Modules ├── btreeinteriorpage_processing.py ├── btreeleafpage_processing.py ├── btreeleafpage_processing_works.py ├── calculate_pointermappages.py ├── extracttabledefinitions.py ├── findtable.py ├── freelistpagenumbers.py ├── instasearch.py ├── output_sqlite.py ├── parse_freeblocks.py ├── parse_sqlite_file.py ├── parse_unallocated.py ├── parse_wal_file.py ├── parsesqliteheader.py ├── parsewalheader.py ├── recordclassify.py └── varints.py ├── README.md └── SQBite.py /Other SQLite Parsers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/Other SQLite Parsers/LICENSE -------------------------------------------------------------------------------- /Other SQLite Parsers/Requirements.txt: -------------------------------------------------------------------------------- 1 | prettytable 2 | -------------------------------------------------------------------------------- /Other SQLite Parsers/SF_Freelist_Pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/Other SQLite Parsers/SF_Freelist_Pages.py -------------------------------------------------------------------------------- /Other SQLite Parsers/SF_SQLite_Header_Parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/Other SQLite Parsers/SF_SQLite_Header_Parser.py -------------------------------------------------------------------------------- /Other SQLite Parsers/SF_SQLite_Page_Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/Other SQLite Parsers/SF_SQLite_Page_Info.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SQLite Main Database File Header Parser - Tutorial Video: https://youtu.be/01aLyZPf6d8 2 | -------------------------------------------------------------------------------- /SQBite/Modules/btreeinteriorpage_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/btreeinteriorpage_processing.py -------------------------------------------------------------------------------- /SQBite/Modules/btreeleafpage_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/btreeleafpage_processing.py -------------------------------------------------------------------------------- /SQBite/Modules/btreeleafpage_processing_works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/btreeleafpage_processing_works.py -------------------------------------------------------------------------------- /SQBite/Modules/calculate_pointermappages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/calculate_pointermappages.py -------------------------------------------------------------------------------- /SQBite/Modules/extracttabledefinitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/extracttabledefinitions.py -------------------------------------------------------------------------------- /SQBite/Modules/findtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/findtable.py -------------------------------------------------------------------------------- /SQBite/Modules/freelistpagenumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/freelistpagenumbers.py -------------------------------------------------------------------------------- /SQBite/Modules/instasearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/instasearch.py -------------------------------------------------------------------------------- /SQBite/Modules/output_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/output_sqlite.py -------------------------------------------------------------------------------- /SQBite/Modules/parse_freeblocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/parse_freeblocks.py -------------------------------------------------------------------------------- /SQBite/Modules/parse_sqlite_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/parse_sqlite_file.py -------------------------------------------------------------------------------- /SQBite/Modules/parse_unallocated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/parse_unallocated.py -------------------------------------------------------------------------------- /SQBite/Modules/parse_wal_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/parse_wal_file.py -------------------------------------------------------------------------------- /SQBite/Modules/parsesqliteheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/parsesqliteheader.py -------------------------------------------------------------------------------- /SQBite/Modules/parsewalheader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/parsewalheader.py -------------------------------------------------------------------------------- /SQBite/Modules/recordclassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/recordclassify.py -------------------------------------------------------------------------------- /SQBite/Modules/varints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/Modules/varints.py -------------------------------------------------------------------------------- /SQBite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/README.md -------------------------------------------------------------------------------- /SQBite/SQBite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpyderForensics/SQLite_Forensics/HEAD/SQBite/SQBite.py --------------------------------------------------------------------------------