skill-veil-core 0.2.0

Core library for skill-veil behavioral analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
//! Allowlist of well-known API hosts that legitimately receive
//! credentials over HTTP(S).
//!
//! # Why an allowlist
//!
//! `ARTIFACT_TAINT_SECRET_TO_EXTERNAL_NETWORK` and
//! `ARTIFACT_TAINT_IDENTITY_TO_EXTERNAL_NETWORK` fire whenever a node
//! has BOTH a secret/identity source AND an external-network sink.
//! That is the modal benign behaviour for an OpenClaw skill that
//! integrates with an upstream API: read `YOUTUBE_API_KEY` from env,
//! POST to `googleapis.com`. Cross-LLM triage on a 4000-skill
//! VT-clean corpus showed this pair contributes ~272 of the ~449
//! consensus false positives.
//!
//! When EVERY external sink for a tainted node resolves to a host on
//! this list — OR is first-party to a credential the same node reads
//! (`host_matches_secret_owner`, the dynamic generalisation of this
//! static list) — downstream callers downgrade the finding from
//! `MaliciousBehavior` / `block` to `ReviewSignal` /
//! `require_approval`. The signal is preserved (operators still see
//! the elevated risk) but the verdict no longer auto-blocks.
//!
//! # Curation rules
//!
//! Only add hosts that meet ALL of:
//! - Operate under a public, documented API contract
//! - Use bearer-token / API-key auth in the request, not in the URL
//! - Are operated by an organisation with a security-disclosure
//!   contact and an established reputation
//!
//! Adding a host here is a TRUST decision: a compromised entry on
//! this list silently downgrades exfil findings that point at it.
//! Pull requests touching this list MUST justify the addition in the
//! commit message.
//!
//! NOTE: domain matching is case-insensitive and supports a single
//! leading `*.` wildcard for subdomain coverage. Anything else
//! (regex, multiple wildcards, port specs) is rejected at parse time
//! by [`is_trusted_api_host`] returning `false`.

use std::collections::BTreeSet;

/// Static allowlist of trusted API host patterns. Each entry is
/// either a literal host (`api.openai.com`) or a single-wildcard
/// pattern (`*.googleapis.com`) covering subdomains.
pub(super) const TRUSTED_API_HOSTS: &[&str] = &[
    // Google
    "*.googleapis.com",
    "*.google.com",
    // GitHub — both bare and subdomain variants. Many skills reference
    // `https://github.com/<org>/<repo>` directly (homepage, raw pulls
    // resolved through the gateway), so the bare host needs an entry
    // even though `*.github.com` covers the API.
    "github.com",
    "api.github.com",
    "*.github.com",
    "*.githubusercontent.com",
    // OpenAI / Anthropic / xAI / DeepSeek-compatible / OpenRouter
    "api.openai.com",
    "api.anthropic.com",
    "api.x.ai",
    "api.deepseek.com",
    "openrouter.ai",
    "api.openrouter.ai",
    // Self-hosted LLMs commonly fronted by these endpoints
    "ollama.com",
    "api.ollama.com",
    // Hugging Face
    "huggingface.co",
    "*.huggingface.co",
    "*.hf.co",
    // Atlassian (Jira / Confluence / Rovo). Bare + wildcard since
    // `support.atlassian.com` and `mcp.atlassian.com` both appear in
    // benign Confluence/Rovo MCP skills.
    "atlassian.com",
    "*.atlassian.net",
    "*.atlassian.com",
    // Notion
    "api.notion.com",
    // Slack
    "*.slack.com",
    "slack.com",
    "hooks.slack.com",
    // Microsoft Graph / Azure cognitive
    "graph.microsoft.com",
    "login.microsoftonline.com",
    // AWS public endpoints (regional pattern)
    "*.amazonaws.com",
    // Cloudflare workers / Pages / R2 / public DNS. `*.pages.dev` and
    // `*.workers.dev` are the deployed-app domains for Cloudflare
    // Pages and Workers respectively — modal targets for skills that
    // POST events into a Cloudflare-hosted webhook receiver.
    "*.cloudflare.com",
    "*.pages.dev",
    "*.workers.dev",
    // Workflow / no-code automation hubs commonly used as webhook
    // receivers from agent skills. Adding the base domains
    // (`*.zapier.com` / `*.make.com` etc.) catches both the trigger
    // endpoint subdomains (`hooks.zapier.com` / `hook.eu1.make.com`)
    // and the docs/UI subdomains a skill might link to.
    "*.zapier.com",
    "*.make.com",
    "*.n8n.cloud",
    "*.pipedream.com",
    "*.pipedream.net",
    "*.ifttt.com",
    // Tavily search API (modal LLM-companion search service)
    "*.tavily.com",
    // Reference / standards bodies (skills that link to RFCs / IANA
    // registries from documentation prose).
    "iana.org",
    "*.iana.org",
    "ietf.org",
    "*.ietf.org",
    // Other well-known public APIs that frequently appear in benign
    // skills.
    "api.stripe.com",
    "api.twilio.com",
    "api.sendgrid.com",
    "api.mailgun.net",
    "api.postmarkapp.com",
    "api.linear.app",
    "api.figma.com",
    "api.zoom.us",
    "api.dropbox.com",
    "api.intercom.io",
    "api.hubapi.com",
    "api.asana.com",
    "api.trello.com",
    "api.airtable.com",
    "api.basecamp.com",
    "api.calendly.com",
    "api.discord.com",
    "discord.com",
    "api.telegram.org",
    "api.spotify.com",
    "api.youtube.com",
];

/// RFC2606 / RFC6761 reserved hostnames and TLDs that document
/// authors use as placeholder URLs in skill prose ("connect to
/// `https://example.com/api/...`"). Treated as "documentation noise"
/// rather than real exfil sinks: callers strip these before deciding
/// whether ALL real sinks are trusted.
///
/// Loopback variants (`localhost`, `*.localhost`) are included for
/// the same reason — a skill that POSTs to `http://localhost:8080`
/// is talking to itself, not exfiltrating to an external party.
///
/// Curation rule: only RFC-reserved or otherwise globally-loopback
/// names. Real organisations whose domains happen to look reserved
/// (e.g. `example-corp.com`) MUST NOT land here — extend
/// [`TRUSTED_API_HOSTS`] instead.
pub(super) const DOCUMENTATION_OR_RESERVED_HOSTS: &[&str] = &[
    // RFC2606 reserved second-level names.
    "example.com",
    "example.org",
    "example.net",
    "*.example.com",
    "*.example.org",
    "*.example.net",
    // RFC2606 reserved TLDs.
    "*.example",
    "*.test",
    "*.invalid",
    // RFC6761 loopback.
    "localhost",
    "*.localhost",
];

/// Returns `true` if `endpoint` resolves to a documentation /
/// reserved / loopback host that callers should strip from sink lists
/// before deciding whether the remaining real sinks are trusted.
///
/// Pre-fix a single `https://example.com/...` reference in skill
/// prose (or the bare `127.0.0.1` loopback target) defeated the
/// `all_external_sinks_first_party_or_trusted` check even when every
/// other sink was on the trusted-API allowlist.
#[must_use]
pub(super) fn is_documentation_or_reserved_host(endpoint: &str) -> bool {
    let host = match extract_host(endpoint) {
        Some(h) => h.to_ascii_lowercase(),
        None => return false,
    };
    if host.is_empty() {
        return false;
    }
    if is_loopback_ipv4(&host) {
        return true;
    }
    for pattern in DOCUMENTATION_OR_RESERVED_HOSTS {
        if matches_host_pattern(&host, pattern) {
            return true;
        }
    }
    false
}

fn is_loopback_ipv4(host: &str) -> bool {
    if !is_ipv4_literal(host) {
        return false;
    }
    host.starts_with("127.")
}

/// Returns `true` if `endpoint` (a URL string from a graph edge's
/// destination) resolves to a host on [`TRUSTED_API_HOSTS`].
///
/// # Matching rules
///
/// - Scheme + path are stripped before host comparison; the helper
///   accepts bare hostnames, full URLs, and host:port pairs.
/// - Host comparison is case-insensitive.
/// - A pattern of the form `*.<suffix>` matches any host whose
///   trailing labels equal `<suffix>` (proper subdomain). A literal
///   pattern matches only its exact host. `*.foo.com` therefore does
///   NOT match `foo.com` itself — list both if both should be
///   trusted.
///
/// Returns `false` for malformed inputs, plain IP literals
/// (`192.168.1.1:8080`), and the empty string. The conservative
/// default protects the downgrade path: a host we cannot parse will
/// never satisfy the allowlist.
#[must_use]
pub(super) fn is_trusted_api_host(endpoint: &str) -> bool {
    let host = match extract_host(endpoint) {
        Some(h) => h.to_ascii_lowercase(),
        None => return false,
    };
    if host.is_empty() {
        return false;
    }
    // Plain IPv4 literals never qualify, even if the user happens to
    // type one of the allowlist hostnames. A taint pointing at an IP
    // is exactly the kind of finding the operator wants to inspect
    // manually.
    if is_ipv4_literal(&host) {
        return false;
    }
    for pattern in TRUSTED_API_HOSTS {
        if matches_host_pattern(&host, pattern) {
            return true;
        }
    }
    false
}

/// Generic credential/URL vocabulary that carries no service
/// identity. Stripped before comparing a secret-source name against a
/// destination host so `STRIPE_API_KEY` reduces to the identifying
/// token `stripe`, not the noise tokens `api`/`key`.
const SECRET_NAME_STOPWORDS: &[&str] = &[
    "api",
    "key",
    "keys",
    "token",
    "tokens",
    "secret",
    "secrets",
    "auth",
    "oauth",
    "client",
    "bearer",
    "access",
    "refresh",
    "env",
    "environ",
    "config",
    "url",
    "uri",
    "host",
    "hostname",
    "endpoint",
    "bot",
    "pat",
    "cred",
    "creds",
    "credential",
    "credentials",
    "password",
    "passwd",
    "pwd",
    "user",
    "username",
    "login",
    "session",
    "cookie",
    "prod",
    "production",
    "dev",
    "development",
    "stage",
    "staging",
    "test",
    "sandbox",
    "live",
    "http",
    "https",
    "www",
    "com",
    "net",
    "org",
    "default",
    "value",
    "string",
    "data",
    "file",
    "path",
    "name",
];

/// Multi-label public suffixes we must look past to find the
/// registrable label. Not exhaustive — only the forms that recur in
/// skill manifests. Anything not listed falls back to the
/// single-label-TLD assumption.
const COMPOUND_TLD_PENULTIMATES: &[&str] = &["com", "net", "org", "co", "gov", "edu", "ac"];

/// Extract the registrable label of `endpoint` — the single label
/// immediately left of the public suffix, which identifies the owning
/// organisation. `api.wahooligan.com` → `wahooligan`, `atollhq.com` →
/// `atollhq`, `mcp.speakai.co` → `speakai`, `foo.example.co.uk` →
/// `example`. Returns `None` for IP literals, single-label hosts, and
/// unparseable input (the conservative default: no label means no
/// affinity, so the taint finding keeps full strength).
///
/// Only the label at the registrable position is returned — never a
/// subdomain. This closes the `openai-telemetry.attacker.com` hole
/// where an attacker prefixes the victim secret's name as a
/// subdomain label to spoof first-party affinity.
fn registrable_label(endpoint: &str) -> Option<String> {
    let host = extract_host(endpoint)?.to_ascii_lowercase();
    if host.is_empty() || is_ipv4_literal(&host) {
        return None;
    }
    let labels: Vec<&str> = host.split('.').filter(|l| !l.is_empty()).collect();
    if labels.len() < 2 {
        return None;
    }
    // Drop the public suffix: 2 labels when the penultimate is a
    // compound-TLD second level (`co.uk`, `com.au`), else 1.
    let suffix_len = if labels.len() >= 3
        && COMPOUND_TLD_PENULTIMATES.contains(&labels[labels.len() - 2])
        && labels[labels.len() - 1].len() <= 3
    {
        2
    } else {
        1
    };
    if labels.len() <= suffix_len {
        return None;
    }
    let label = labels[labels.len() - suffix_len - 1];
    if label.len() < 4 {
        return None;
    }
    Some(label.to_string())
}

/// Tokenise a secret-source name (env var, file path, or URL the
/// secret was read from) into identifying tokens: lowercase, split on
/// non-alphanumeric boundaries, stopwords and sub-4-char fragments
/// removed.
fn secret_identity_tokens(name: &str) -> BTreeSet<String> {
    name.to_ascii_lowercase()
        .split(|c: char| !c.is_ascii_alphanumeric())
        .filter(|t| t.len() >= 4)
        .filter(|t| !SECRET_NAME_STOPWORDS.contains(t))
        .filter(|t| !t.chars().all(|c| c.is_ascii_digit()))
        .map(str::to_string)
        .collect()
}

/// `true` when `endpoint`'s registrable label is the *owner* of at
/// least one secret/identity name in `secret_targets` — i.e. the
/// credential being read belongs to the host it is sent to, which is
/// authentication, not exfiltration.
///
/// # Why this is recall-safe
///
/// Exfil malware reads a *victim* secret (`AWS_*`, `~/.ssh/id_rsa`,
/// browser cookies, the project `.env`) and ships it to an
/// *unrelated* attacker host; those names share no identifying token
/// with the attacker domain, so affinity is `false` and the taint
/// finding keeps full `Block`/`MaliciousBehavior` strength. Affinity
/// only fires for the modal benign pattern: `WAHOO_ACCESS_TOKEN` read
/// and sent to `api.wahooligan.com`. The match requires a shared
/// token of length ≥4 on BOTH sides, so short or generic fragments
/// cannot manufacture a coincidental match.
pub(super) fn host_matches_secret_owner(endpoint: &str, secret_targets: &BTreeSet<String>) -> bool {
    let Some(label) = registrable_label(endpoint) else {
        return false;
    };
    for target in secret_targets {
        for token in secret_identity_tokens(target) {
            // Containment either way: `wahoo` ⊂ `wahooligan`,
            // `agentcall` == `agentcall`, `speakai` ⊃ `speak`.
            let (shorter, longer) = if token.len() <= label.len() {
                (token.as_str(), label.as_str())
            } else {
                (label.as_str(), token.as_str())
            };
            if shorter.len() >= 4 && longer.contains(shorter) {
                return true;
            }
        }
    }
    false
}

/// Extract the host portion from an endpoint string. Accepts:
/// - Full URLs: `https://api.github.com/users/me`
/// - Schemeless forms: `api.github.com/users/me`
/// - Bare hosts: `api.github.com`
/// - Host:port: `localhost:11434`
///
/// Returns `None` if the input has no parseable host component.
fn extract_host(endpoint: &str) -> Option<&str> {
    let trimmed = endpoint.trim();
    if trimmed.is_empty() {
        return None;
    }
    // Strip scheme.
    let after_scheme = trimmed
        .split_once("://")
        .map(|(_, rest)| rest)
        .unwrap_or(trimmed);
    // Drop user-info (`user:pass@host`).
    let after_userinfo = after_scheme
        .rsplit_once('@')
        .map(|(_, rest)| rest)
        .unwrap_or(after_scheme);
    // Take everything up to the first path / query / fragment / port
    // separator. Port stripping is required so `localhost:8080` does
    // not match a hypothetical literal `localhost:8080` in the
    // allowlist (we only key on host).
    let host_with_port = after_userinfo
        .split(['/', '?', '#'])
        .next()
        .unwrap_or(after_userinfo);
    let host = host_with_port
        .rsplit_once(':')
        .map(|(h, _port)| h)
        .unwrap_or(host_with_port);
    if host.is_empty() {
        None
    } else {
        Some(host)
    }
}

/// Wildcard matching for one allowlist entry. Supports the single
/// leading-wildcard form `*.<suffix>` and literal exact match.
fn matches_host_pattern(host: &str, pattern: &str) -> bool {
    let pattern_lc = pattern.to_ascii_lowercase();
    if let Some(suffix) = pattern_lc.strip_prefix("*.") {
        // Wildcard MUST match a proper subdomain — pattern `*.foo.com`
        // matches `bar.foo.com` (strip "bar." → equals "foo.com") but
        // NOT `foo.com` (no leading label to strip).
        if host.len() <= suffix.len() {
            return false;
        }
        return host.ends_with(suffix) && host.as_bytes()[host.len() - suffix.len() - 1] == b'.';
    }
    host == pattern_lc
}

fn is_ipv4_literal(host: &str) -> bool {
    let mut octets = 0;
    for part in host.split('.') {
        if part.is_empty() || part.len() > 3 {
            return false;
        }
        if !part.chars().all(|c| c.is_ascii_digit()) {
            return false;
        }
        if part.parse::<u8>().is_err() {
            return false;
        }
        octets += 1;
    }
    octets == 4
}

#[cfg(test)]
mod tests {
    use super::*;

    /// Contract: literal allowlist entries match their exact host
    /// only. An exact entry like `api.github.com` MUST match
    /// `https://api.github.com/users/me` but MUST NOT match a sibling
    /// host like `evil-api.github.com` that merely shares the suffix.
    #[test]
    fn literal_entry_matches_exact_host_only() {
        assert!(is_trusted_api_host("https://api.github.com/users/me"));
        assert!(is_trusted_api_host("api.github.com"));
        // `evil-api.github.com` does not equal `api.github.com`; the
        // wildcard `*.github.com` is the entry that catches it. We
        // pin that specific protection in `wildcard_subdomain_match`.
    }

    /// Contract: `*.<suffix>` matches subdomains of the suffix and
    /// requires a `.` separator before the suffix. Without the
    /// separator check, a wildcard `*.foo.com` would dangerously
    /// match `evilfoo.com` (no dot before the suffix).
    #[test]
    fn wildcard_subdomain_match_requires_dot_separator() {
        // `*.googleapis.com` matches `sheets.googleapis.com`.
        assert!(is_trusted_api_host("https://sheets.googleapis.com/v4"));
        assert!(is_trusted_api_host("storage.googleapis.com"));
        // `*.googleapis.com` does NOT match `evilgoogleapis.com`
        // (no dot separator before `googleapis.com`).
        assert!(!is_trusted_api_host("evilgoogleapis.com"));
        // `*.googleapis.com` does NOT match the bare `googleapis.com`
        // because the wildcard requires at least one subdomain label.
        // List both literal and wildcard if both should be trusted.
        assert!(!is_trusted_api_host("googleapis.com"));
    }

    /// Contract: an attacker-controlled host that merely contains a
    /// trusted hostname as a substring MUST NOT be trusted. Pre-fix
    /// a naive `host.contains(suffix)` would have whitelisted
    /// `attacker.com/api.github.com/path` as if it were GitHub.
    #[test]
    fn substring_attack_does_not_match() {
        assert!(!is_trusted_api_host("https://attacker.com/api.github.com"));
        assert!(!is_trusted_api_host("https://api.github.com.evil.com/x"));
    }

    /// Contract: IP literals NEVER qualify even if the user types one
    /// of the allowlisted hostnames. Taint pointing at a raw IP is
    /// the high-signal case operators want to inspect.
    #[test]
    fn ipv4_literal_never_trusted() {
        assert!(!is_trusted_api_host("https://192.168.1.1/api"));
        assert!(!is_trusted_api_host("10.0.0.1:8080"));
        assert!(!is_trusted_api_host("8.8.8.8"));
    }

    /// Contract: case-insensitive matching. `API.GITHUB.COM` MUST be
    /// recognised as `api.github.com`.
    #[test]
    fn matching_is_case_insensitive() {
        assert!(is_trusted_api_host("https://API.GITHUB.COM/users"));
        assert!(is_trusted_api_host("Sheets.GoogleAPIs.com"));
    }

    /// Contract: schemeless and host:port forms parse correctly.
    /// Skill code commonly stores endpoints as bare hosts in env-
    /// var defaults; the allowlist must accept both.
    #[test]
    fn schemeless_and_port_forms_parse() {
        assert!(is_trusted_api_host("api.openai.com"));
        assert!(is_trusted_api_host("api.openai.com:443"));
        assert!(is_trusted_api_host("api.openai.com/v1/chat/completions"));
    }

    /// Contract: malformed / empty input never matches.
    #[test]
    fn malformed_input_never_matches() {
        assert!(!is_trusted_api_host(""));
        assert!(!is_trusted_api_host("   "));
        assert!(!is_trusted_api_host("https://"));
        assert!(!is_trusted_api_host("not_a_url"));
    }

    /// Contract: RFC2606 reserved second-level names and reserved
    /// TLDs are recognised as documentation noise so callers can
    /// strip them before the trust check. Pre-fix a single
    /// `https://example.com/...` reference in skill prose defeated
    /// the trusted-host downgrade for the entire artifact.
    #[test]
    fn documentation_hosts_recognised_as_reserved() {
        for endpoint in [
            "https://example.com/api",
            "http://example.org",
            "https://api.example.net/v1",
            "https://foo.example",
            "https://bar.test",
            "http://baz.invalid",
            "http://localhost:8080/health",
            "http://api.localhost",
            "http://127.0.0.1:5000",
            "http://127.5.5.5",
        ] {
            assert!(
                is_documentation_or_reserved_host(endpoint),
                "expected {endpoint} to be flagged as documentation/reserved",
            );
        }
    }

    /// Contract (negative): real organisations whose domains merely
    /// contain reserved-looking substrings MUST NOT be flagged. A
    /// company called `example-corp.com` or a host
    /// `examplecdn.io` is genuinely external infrastructure and
    /// belongs on the trust path proper.
    #[test]
    fn documentation_host_check_does_not_overmatch() {
        for endpoint in [
            "https://example-corp.com/api",
            "https://examplecdn.io",
            "https://attacker.com/example.com",
            "https://10.0.0.5",
            "https://192.168.1.1",
            "https://8.8.8.8",
        ] {
            assert!(
                !is_documentation_or_reserved_host(endpoint),
                "expected {endpoint} NOT to be flagged as documentation/reserved",
            );
        }
    }

    /// Contract: well-known LLM provider hosts the skill-veil
    /// integration itself depends on are present. Pins the
    /// allowlist's coverage of the big-3 providers.
    #[test]
    fn allowlist_includes_major_llm_providers() {
        for host in [
            "https://api.openai.com/v1",
            "https://api.anthropic.com/v1/messages",
            "https://api.x.ai/v1",
            "https://ollama.com/api/chat",
            "https://api.deepseek.com/v1",
        ] {
            assert!(
                is_trusted_api_host(host),
                "expected {host} to be on allowlist",
            );
        }
    }

    fn names(items: &[&str]) -> BTreeSet<String> {
        items.iter().map(|s| s.to_string()).collect()
    }

    /// # Contract
    /// A destination whose registrable label owns the credential the
    /// node reads is authentication, not exfiltration. Pins the modal
    /// benign API-client pattern that dominated the taint FP set:
    /// `<SERVICE>_API_KEY` read, `api.<service>.<tld>` connected.
    #[test]
    fn host_matches_secret_owner_accepts_first_party_credential() {
        for (target, sink) in [
            ("WAHOO_ACCESS_TOKEN", "https://api.wahooligan.com/v1/user"),
            ("ATOLL_API_KEY", "https://atollhq.com/api/feedback"),
            ("AGENTCALL_API_KEY", "https://api.agentcall.co/llms.txt"),
            ("SPEAK_API_KEY", "https://mcp.speakai.co"),
            ("NOTION_TOKEN", "https://notion.so/v1/pages"),
        ] {
            assert!(
                host_matches_secret_owner(sink, &names(&[target])),
                "{target} must be recognised as first-party to {sink}"
            );
        }
    }

    /// # Contract (negative — recall guard)
    /// Exfil reads a victim secret and ships it to an unrelated host;
    /// the names share no identifying token, so affinity MUST be
    /// false and the taint finding keeps full Block strength. Also
    /// pins that generic secret files (`.env`, `~/.ssh/id_rsa`) and
    /// short/generic labels never manufacture affinity.
    #[test]
    fn host_matches_secret_owner_rejects_cross_party_exfil() {
        let cases: &[(&str, &str)] = &[
            ("AWS_SECRET_ACCESS_KEY", "https://collector.evil.com/up"),
            ("OPENAI_API_KEY", "https://exfil.example/post"),
            (".env", "https://attacker.net/log"),
            ("~/.ssh/id_rsa", "https://drop.host.io/x"),
            ("GITHUB_TOKEN", "https://pastebin.com/raw/abc"),
            ("STRIPE_API_KEY", "https://api.evil.co"),
        ];
        for (target, sink) in cases {
            assert!(
                !host_matches_secret_owner(sink, &names(&[target])),
                "{target} → {sink} must NOT be treated as first-party"
            );
        }
        // Empty source set never matches.
        assert!(!host_matches_secret_owner(
            "https://api.wahooligan.com",
            &BTreeSet::new()
        ));
    }

    /// # Contract (recall guard)
    /// An attacker MUST NOT spoof first-party affinity by prefixing
    /// the victim secret's name as a subdomain label. Only the
    /// registrable label (left of the public suffix) is compared, so
    /// `openai-telemetry.attacker.com` reduces to `attacker`, never
    /// `openai-telemetry`.
    #[test]
    fn host_matches_secret_owner_ignores_spoofed_subdomain_label() {
        assert!(!host_matches_secret_owner(
            "https://openai-telemetry.attacker.com/collect",
            &names(&["OPENAI_API_KEY"])
        ));
        assert!(!host_matches_secret_owner(
            "https://stripe.evilcorp.com/x",
            &names(&["STRIPE_API_KEY"])
        ));
    }

    /// # Contract
    /// `registrable_label` strips API-gateway subdomains and the
    /// public suffix down to the owning label, and refuses IPs /
    /// single-label / sub-4-char labels (conservative: no label means
    /// no affinity downgrade).
    #[test]
    fn registrable_label_extracts_owning_label() {
        assert_eq!(
            registrable_label("https://cloud-api.wahooligan.com/x").as_deref(),
            Some("wahooligan")
        );
        assert_eq!(
            registrable_label("https://api.speakai.co").as_deref(),
            Some("speakai")
        );
        assert_eq!(
            registrable_label("https://atollhq.com/api").as_deref(),
            Some("atollhq")
        );
        assert_eq!(registrable_label("https://192.168.1.1/x"), None);
        assert_eq!(registrable_label("https://localhost:8080"), None);
        assert_eq!(registrable_label("https://api.x.io"), None);
    }
}