ogmini - Exploration of DFIR

Having fun while learning about and pivoting into the world of DFIR.


About Blog Research CTF/Challenge GitHub RSS
29 January 2025

Diving Deep - LevelDB Part 4

by ogmini

Continuing work on the binary template file for the LevelDB .ldb files. Learning a lot and pushing my knowledge boundaries. I am definitely recreating prior research; but I find this is the best way to learn and also validate previous findings. It is also possible things have changed.

I’m leaning heavily at looking at the golang and C++ implementations of LevelDB on Google’s various GitHub repositories. The following links have been useful:

I still haven’t made much progress due to time constraints. At the moment, I have implemented the structure for:

  • BlockHandles
  • BlockTrailers

I have also been able to mark and locate the following:

  • Index Block Handle
  • Index Block
  • Meta Index Block Handle
  • Meta Index Block
  • Magic Bytes/File Signature

I’m trying to wrap my head around how the Block and BlockEntry structures work. I’ll also have to tackle the compression.

tags: LevelDB - exploration