ssut/payload-dumper-go

an android OTA payload dumper written in Go

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 45 minutes ago
Type:CLI ToolCategory(s):AndroidMobile & Desktop
Added to GitGenius on September 19th, 2026
Created on October 3rd, 2020
Open Issues & Pull Requests: 2 (+0)
GitHub issues: Enabled
Number of forks: 295
Total Stargazers: 3,526 (+0)
Total Subscribers: 36 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 4.6 days
Mean response time: 220.5 days
90th percentile: 1003.7 days
Tracked items: 17

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 1
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 24 days
Stale 30+ days: 0
Stale 90+ days: 0

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • enhancement (1)

Most active issues this week

Detailed Description

payload-dumper-go is a command-line tool that extracts Android OTA payload files written in Go.

The tool solves the problem of extracting system images from Android over-the-air update packages. It handles both full OTA payloads and incremental delta OTA updates, applying deltas on top of base images to produce bit-exact output. The extraction process uses parallel decompression to achieve high speed, relying on the xz library for decompression rather than a pure Go implementation due to significant performance differences. The tool verifies operation data, source images, and final images using SHA256 checksums and exits with a non-zero code on failure. It can read directly from zip packages containing payload.bin without requiring temporary copies.

The tool suits developers and enthusiasts working with Android system images who need fast, reliable extraction of OTA payloads. It works as both a standalone command-line utility and as a Go library that can be imported into other projects. The primary limitation is lack of support for PUFFDIFF, ZUCCHINI, and LZ4DIFF delta operations, which typically affect system, product, and system_ext partitions; affected partitions can be skipped while extracting others. The tool requires xz to be installed on the system and performs best on SSDs rather than mechanical drives.

Development activity shows consistent maintenance with regular updates addressing bugs and adding features. The project accepts community contributions and responds to issues raised by users. The maintainer has invested effort in performance optimization, including detailed benchmarking and comparison of different implementation approaches. Documentation includes clear installation instructions for multiple platforms and practical examples of both standard and incremental OTA extraction workflows.