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
//! Finding gauge-class classifier — thin re-export from droidsaw-common.
//!
//! The canonical table and `GaugeClass` type now live in
//! `droidsaw_common::finding` (TD-8 resolved). This module is kept for
//! any internal callers that imported from `crate::mcp::classify`.

pub use droidsaw_common::GaugeClass;

/// Classify a finding ID into its noise tier.
/// Delegates to the canonical `GaugeClass::of` in droidsaw-common.
#[inline]
pub fn classify_finding(id: &str) -> GaugeClass {
    GaugeClass::of(id)
}