Skip to content

Chrome(Linux,Android) cache extractor with Python binding. A CUI tool to restore contents of sites which you had visited but closed.

Notifications You must be signed in to change notification settings

0xDigest/simplecache

This branch is up to date with shosatojp/simplecache:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Aug 24, 2021
c3bbc62 · Aug 24, 2021

History

44 Commits
Oct 9, 2020
Oct 9, 2020
Oct 9, 2020
Oct 8, 2020
Oct 9, 2020
Oct 8, 2020
Aug 24, 2021
Oct 9, 2020
Aug 24, 2021
Oct 7, 2020
Oct 7, 2020
Oct 8, 2020
Oct 7, 2020
Oct 8, 2020
Oct 9, 2020
Oct 9, 2020
Oct 9, 2020
Oct 9, 2020
Oct 7, 2020
Oct 7, 2020
Oct 7, 2020

Repository files navigation

simplecache

C/C++ CI

Chrome(Linux,Android) 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. A CUI tool to restore contents of sites which you had visited but closed.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 76.4%
  • Python 17.5%
  • Makefile 5.0%
  • Shell 1.1%