mirror of
https://github.com/LORDBABUINO/stealth.git
synced 2026-04-28 16:40:00 -07:00
3.6 KiB
3.6 KiB
theme, title, titleTemplate, class, fonts, lineNumbers, drawings, transition, mdc
| theme | title | titleTemplate | class | fonts | lineNumbers | drawings | transition | mdc | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| default | Stealth — Bitcoin Wallet Privacy Analyzer | %s | Stealth | stealth-theme |
|
false |
|
slide | true |
STEALTH
Bitcoin Wallet Privacy Analyzer
A privacy audit tool that surfaces vulnerabilities at the UTXO level.
The Problem
Bitcoin privacy is fragile
- Chain analysis firms track wallets
- Common heuristics link addresses
- Users rarely know their exposure
- One bad UTXO can taint the rest
Today's tools
- Complex, require expertise
- No UTXO-level visibility
- Hard to understand risk before spending
What Stealth Does
Input
- Paste wallet descriptor
- Supports
wpkh,pkh,sh(wpkh),tr, multisig
Output
- Structured findings + warnings
- Type/severity/description + evidence details
- Severity badges mapped from detector output
# One click
wpkh([xpub...]/0/*) → Analyze
→ Full report with actionable insights
Vulnerabilities Detected
| Detector Type | Meaning |
|---|---|
ADDRESS_REUSE |
Same address received multiple payments, linking history |
CIOH |
Multi-input ownership clustering signal |
DUST / DUST_SPENDING |
Dust detection and dust+normal co-spend linkage |
CHANGE_DETECTION |
Payment/change outputs become easy to distinguish |
CONSOLIDATION / CLUSTER_MERGE |
Input histories merged into one cluster |
SCRIPT_TYPE_MIXING |
Mixed input script families create fingerprint |
UTXO_AGE_SPREAD |
Old/new UTXO spread leaks dormancy patterns |
EXCHANGE_ORIGIN |
Probable exchange batch-withdrawal origin |
TAINTED_UTXO_MERGE |
Tainted + clean input merge propagates taint |
BEHAVIORAL_FINGERPRINT |
Transaction style consistency re-identifies wallet |
Warnings: DORMANT_UTXOS, DIRECT_TAINT |
Non-finding risk signals shown separately |
How It Works
1. Parse
- Extract addresses from descriptor
- Support all common formats
2. Fetch
- On-chain history per address
- Uses Bitcoin node / API
3. Analyze
- Apply privacy heuristics
- Flag each UTXO with findings
Architecture
stealth/
├── frontend/ # React + Vite — input, loading, report
└── backend/ # Java/Quarkus — descriptor parsing, chain data, analysis
- Read-only — no keys, no storage, no transmission of descriptors
- Self-hostable — point at your own node for max privacy
Demo Flow
- Input screen — paste descriptor, click Analyze
- Loading — fetches and analyzes
- Report — summary bar (findings / warnings / tx analyzed)
- Expandable finding cards: type, severity, description, structured evidence
Why It Matters
- Users — understand exposure before consolidating or spending
- Wallets — integrate as pre-spend check
- Researchers — study privacy heuristics at scale
- Privacy-first — no cloud, no logs, no tracking
Thank You
STEALTH
Bitcoin Wallet Privacy Analyzer
Appendix — Supported Descriptors
wpkh(...)— native SegWitpkh(...)— legacysh(wpkh(...))— nested SegWittr(...)— Taproot- Multisig variants
All analysis uses publicly available on-chain data.