8000 GitHub - sanlic/mmkv_visualizer: A web application that will allow you to visualize MMKV databases, with all processing done client-side.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

A web application that will allow you to visualize MMKV databases, with all processing done client-side.

Notifications You must be signed in to change notification settings

sanlic/mmkv_visualizer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mmkv_visualizer

A web application that will allow you to visualize MMKV databases, with all processing done client-side. The web service utilizes Pyodide which enables a python runtime within the browser, in which the main MMKV parsing code is written in. It sends no data up to any server and all the parsing happens right in your browser.

Usage

There are three ways you can use the following code:

  1. Web Application:

The main way is to utilize the online web service provided at https://www.mmkv-visualizer.com/. You can simply drag & drop or choose an MMKV of your choice, then visualize the data. The visualizer allows you to iterate through different data type encodings (MMKV uses protobuf encoding) by simply clicking any table cell, as well as expand the data to get a deeper look.

  1. Local Web Application:

For those who would like to run the service locally, all you need is npm:

  • cd frontend
  • npm install
  • npm run dev
  1. Python Parsing:

If you'd like to use only the python code to parse the data itself, the parsing code can be found here. The main advantage of using this parsing code over the official python wrapper is that the official python wrapper does not allow you to see older data, while this parser can. This may be important for the inclined forensicator.

You can also find a set of python tests found at tests.

Decryption

The MMKV library natives allows users to encrypt their MMKV files using AES-128 in CFB mode. If needed, the application allows decryption of the data, but must be given the following:

  1. The encrypted MMKV file AND corresponding .crc file (the .crc file contains the 16-byte IV)
  2. The AES key. (Will be prompted to enter the AES key in the form of a hexstring, allowing any length for the key)

Roadmap

  • Expose more metadata: whether database size was found, or if it's a best effort approach, file is empty, file is probablistically encrypted.
  • Experiment with new UI design and see if Svelte Material is a viable solution.
  • Enable decryption with user input of encryption key.

About

A web application that will allow you to visualize MMKV databases, with all processing done client-side.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 58.2%
  • Svelte 36.7%
  • CSS 2.0%
  • JavaScript 1.7%
  • HTML 1.4%
0