An enterprise-grade, multi-threaded historical APK extraction pipeline.
Project description
APKScraper
An enterprise-grade, multi-threaded, and fault-tolerant historical APK extraction pipeline designed for automated vulnerability research, patch diffing, and bug bounty recon.
APKScraper acts as a universal ingestion engine, aggregating historical application versions from multiple CDNs (APKPure, Uptodown) into a unified analysis pipeline.
🚀 Features
- Multi-Source Aggregation: Concurrently scrapes and dedupes version histories from APKPure, Uptodown, and APKMirror APIs.
- Developer Catalog Extraction: Seamlessly extracts an entire developer's suite of applications in bulk using
--mode developer. - Zero-RAM Streaming: Downloads massive
1GB+.xapkfiles safely using memory-efficient block streaming and atomic.parttemporary files, eliminating corrupted partial downloads. - Exact Package Targeting: Employs an exact-match override engine, ensuring searches for
com.google.android.youtubestrictly download the target package without hallucinating fuzzy matches. - Scope Sanitation: Automatically strips
.apkand.xapkextensions from queries, allowing you to directly copy-paste targets from HackerOne or Bugcrowd scopes. - Apkeep Failsafe: Integrates natively with
apkeepas an automated fallback mechanism if regional blocks or Play Store redirection policies hide the target from historical databases. - Thread-Safe UI: Renders beautiful, concurrent ANSI progress bars without relying on external libraries like
tqdmthat struggle in strict externally-managed Linux environments.
📦 Requirements
- Python 3.8+
requestsbeautifulsoup4- Optional:
apkeep(for fallback capabilities)
🛠️ Installation & Usage
Because it is built as a native Python module with a CLI entrypoint, you can install it directly to your system path:
pip install -e .
Once installed, you can execute it natively from anywhere on your system:
apkscraper <query> [options]
📖 Available Commands & Parameters
usage: apkscraper [-h] [-m {app,developer}] [-a] [-v VERSION] [-d DIR] [-s {all,apkpure,uptodown,apkmirror}] [-w WORKERS]
query
Universal Historical APK Scraper
positional arguments:
query App name, Developer name, or Exact Package ID to search for
options:
-h, --help show this help message and exit
-m, --mode {app,developer}
Scrape a single app or all apps by a developer (default: app)
-a, --all Download all versions available
-v, --version VERSION Download specific version
-d, --dir DIR Directory to save downloads (default: current directory)
-s, --source {all,apkpure,uptodown,apkmirror}
Sources to scrape from (default: all)
-w, --workers WORKERS Number of concurrent downloads (default: 4)
Example Use Cases
1. Download ALL Historical Versions (Default behavior) Search for an app by name or package ID and download all available historical versions across all sources.
apkscraper "youtube" --all
2. Target Exact Package ID from a Bug Bounty Scope
Directly copy-paste a package ID from a scope. The scraper will automatically strip the .apk and lock onto the exact package.
apkscraper "com.paypal.android.p2pmobile.apk" --all
3. Download a Specific Version Only download a single, exact version of an app.
apkscraper "com.whatsapp" --version "2.24.12.78"
4. Specify an Output Directory Route the downloaded APKs directly to your static-analysis pipeline directory.
apkscraper "youtube" --all --dir "/opt/analysis/jadx-worker/inbound"
5. Adjust Concurrency Limits Increase or decrease the number of parallel worker threads fetching the APKs (Default is 4).
apkscraper "youtube" --all --workers 8
6. Isolate a Specific CDN Only poll a specific source for historical versions instead of aggregating all of them.
apkscraper "youtube" --all --source apkmirror
7. Bulk Extract a Developer's Catalog Extract all apps published by a specific developer across all enabled sources.
apkscraper "Google LLC" --mode developer --all -w 8
🛡️ Bypassing Cloudflare (APKMirror)
APKMirror is strictly protected by Cloudflare's Turnstile WAF. To scrape it successfully without being blocked (HTTP 403/503), you must supply a valid Cloudflare clearance cookie from an authenticated browser session using environment variables:
export APKMIRROR_USER_AGENT="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"
export APKMIRROR_CF_CLEARANCE="YOUR_CF_CLEARANCE_COOKIE_HERE"
If these are not set or expire, the scraper will gracefully catch the WAF block and output a warning.
🧪 Running Tests
The package includes a comprehensive unittest TDD suite containing mocks for the network and file I/O operations.
python3 -m unittest discover apkscraper/tests/
⚠️ Disclaimer
This tool is designed for educational purposes, security research, and vulnerability analysis (such as Bug Bounty programs). Scraping platforms may violate their Terms of Service. The authors are not responsible for IP bans, blocks, or legal repercussions resulting from the use of this tool. Always implement rate-limiting and abide by robots.txt when automating requests.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apkscraper-1.1.0.tar.gz.
File metadata
- Download URL: apkscraper-1.1.0.tar.gz
- Upload date:
- Size: 14.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92dbcf26ae510e6cc9b1ad35e6b07f5b5ca0e7843bb6075e9fe0842a75efd9dd
|
|
| MD5 |
0989c9733f10afe49be5bccde4cc5ebf
|
|
| BLAKE2b-256 |
751fbaf103fd9ec3a1f6ca17a96693e1a6b60a4a1fbf2c2a40290780e79d60b9
|
File details
Details for the file apkscraper-1.1.0-py3-none-any.whl.
File metadata
- Download URL: apkscraper-1.1.0-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b4ef1065462b11298c5332ab90ecafebbc7f5491bca0ee4b771cf1405be4da2
|
|
| MD5 |
22bbfe4c75d15ba574a21c09331902bf
|
|
| BLAKE2b-256 |
5579d420a84341f59b30460fabc3a78d1b7eb2768769cfed3668cce9daa1b64c
|