Swarm Coordination Algorithm
This document describes the decentralized interaction protocol used by DeTracker to share tracking intelligence without compromising user privacy.
1. The Intelligence Object: Imprint L2
The swarm does not share raw URLs. it shares Hardened Level 2 Imprints. An L2 Imprint is a data package validated locally under specific conditions:
- Detected across at least 3 distinct domains.
- More than 15 confirmed hits by the EKF engine.
- Temporal stability (not a fleeting false positive).
| Field | Role |
|---|---|
uuid | Stable identifier of the imprint on the emitting node. |
behaviorHash | Pattern fingerprint (derived from local signals). |
target | Tracker candidate host (actionable at network level). |
timestamp | Emission timestamp (ms, epoch). |
2. Zero Trust Validation Protocol
The reception of an external signature does not imply immediate execution. The local engine assigning a "High Priority Monitor" to that host.
A definitive block only occurs if the swarm reported the host AND the local EKF engine detects at least one anomalous signal from that same host.
3. Binary Wire Format (DTS1)
The RTCDataChannel uses a fixed 6-byte header followed by UTF-8 strings with BE uint16 lengths.
← Back to Index