3437 / simplecache

Chrome(Linux,Android) cache extractor with Python binding.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

simplecache

C/C++ CI

Chrome(Linux) cache extractor.

Usage

[usage]
simplecache [OPTIONS]
--list  -l      list all keys
--cache -c      cache directory
--key   -k      key
--out   -o      output path

Get list of cache

simplecache --cache ~/.cache/google-chrome/Default/Cache/ --list

Save cached file

simplecache --cache ~/.cache/google-chrome/Default/Cache/ --key https://example.com/image.png --out myimage.png

Python Binding

pip install chromesimplecache
from simplecache import SimpleCacheEntry
import glob
import urllib.parse
import os
import brotli
import gzip
import zlib

cache_dir = os.path.expanduser('~/.cache/google-chrome/Default/Cache/*_0')
out_dir = 'cache'

if not os.path.exists(out_dir):
    os.mkdir(out_dir)

for entry_file in glob.glob(cache_dir):
    e = SimpleCacheEntry(entry_file)
    url = e.get_key()
    print(url)

    filename = urllib.parse.quote(url, safe='')[:255]
    encoding = e.get_header().headers.get('content-encoding', '').strip().lower()
    out_path = os.path.join(out_dir, filename)

    if encoding:
        # decompress with python
        data = e.get_data()
        if encoding == 'gzip':
            data = gzip.decompress(data)
        elif encoding == 'br':
            data = brotli.decompress(data)
        elif encoding == 'deflate':
            data = zlib.decompress(data)

        with open(out_path, 'wb') as f:
            f.write(data)
    else:
        # faster for binary
        e.save(out_path)

Install

Download artifacts from here or manually build.

Build

Build on host

sudo apt-get install -y g++ python3.8-dev make python3-pip
pip3 install pybind11
make

Build with docker

sudo docker-compose up --build
  • Specify python version in docker-compose.yml (default python3.8)

About

Chrome(Linux,Android) cache extractor with Python binding.


Languages

Language:C++ 76.4%Language:Python 17.5%Language:Makefile 5.0%Language:Shell 1.1%