🔒 BLACKOUT v1.0 — GTM Security Operations Platform
Guides
Understanding Findings

Understanding Findings

Findings are the core entity in BLACKOUT. A finding represents a detected vendor behavior that persists across scans.


Finding vs Detection

ConceptDefinition
DetectionA single observation from one scan
FindingA deduplicated entity across all scans

When you scan a site multiple times, you'll see the same vendors. BLACKOUT groups these into findings so you can track behavior over time without noise.


Finding Lifecycle

NEW → KNOWN → CHANGED → REGRESSED → RESOLVED
StatusMeaning
newFirst time seeing this vendor
knownPart of baseline, expected
changedBehavior differs from baseline
regressedPreviously removed, now returned
resolvedNo longer detected

Finding Identity

A finding is uniquely identified by:

finding_key = hash(vendor_id + behavior_signature + endpoint_pattern + page_type)

This means:

  • Same vendor on different pages = different findings
  • Same vendor with different behaviors = different findings
  • Same vendor, same behavior, same page = same finding

Classification Recommendations

BLACKOUT suggests one of four actions:

KILL

Remove immediately. The vendor:

  • Has no legitimate business purpose
  • Collects excessive data
  • Shares data with undisclosed parties
  • Bypasses consent

CONTAIN

Restrict scope. The vendor:

  • Has valid use case BUT
  • Needs data minimization
  • Should be limited to specific pages
  • Requires consent before activation

WATCH

Monitor closely. The vendor:

  • Is borderline acceptable
  • Has changed behavior recently
  • Requires ongoing surveillance

SAFE

Approved for use. The vendor:

  • Has legitimate purpose
  • Operates within disclosed parameters
  • Is properly consented

BTI Categories

BLACKOUT classifies vendor behaviors using BTI (Blackout Threat Intelligence):

CategoryRisk LevelExamples
visitor_identificationHIGHRB2B, Clearbit Reveal
crm_enrichmentHIGHApollo, ZoomInfo
session_recordingMEDIUMFullStory, Hotjar
analyticsLOWGA4, Amplitude
advertisingVARIESMeta Pixel, LinkedIn Insight
consent_managementLOWOneTrust, Cookiebot

BTSS Score

The Blackout Trust Security Score (0-100) factors:

  • Consent compliance
  • Data minimization
  • Disclosure accuracy
  • Piggyback depth
  • Storage patterns

Higher = More trustworthy


Evidence

Each finding includes evidence:

{
  "evidence_refs": [
    { "type": "har_request", "path": "har/0024_request.json" },
    { "type": "cookie", "path": "cookies/rb2b_session.json" },
    { "type": "script", "path": "scripts/rb2b_tag.js" }
  ]
}

Download an Evidence Pack for forensic-grade documentation.


Actions

From any finding, you can:

  1. Classify — Set KILL/CONTAIN/WATCH/SAFE
  2. Create Task — Assign remediation to a team
  3. Download Pack — Export evidence bundle
  4. Share — Escalate to Legal/Security

Next Steps