droidsaw 2.0.0

DROIDSAW — unified Android reverse engineering CLI. Hermes, DEX, APK signing. JSON output, MCP server. Bytecode is not a security layer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BSD-3-Clause

//! Unified corpus-sweep runner.
//!
//! The runner opens each APK exactly once per run, builds an
//! [`extractor::ApkContext`] over the parsed state, and dispatches to
//! every registered [`extractor::CorpusExtractor`]. Facts land in a
//! single append-only sqlite ledger keyed by
//! `(run_id, apk_sha256, extractor_id, key)`.
//!
//! This module provides the extractor trait + per-APK context
//! and the object-safe dispatch wrapper. The orchestrator layer (sqlite ledger,
//! per-shard runner, work-queue parser) is separated.

pub mod extractor;

pub use extractor::{ApkContext, CorpusExtractor, DynCorpusExtractor};