Dataset Viewer
Auto-converted to Parquet Duplicate
at
float64
5.92
291
pid
stringlengths
5
5
token
stringlengths
9
14
action
stringclasses
1 value
reason
stringclasses
1 value
72.405644
P0001
proj:nimbus
grant
secondment
167.567894
P0023
proj:petra
grant
secondment
5.917268
P0026
proj:juniper
grant
secondment
76.679798
P0038
proj:meridian
grant
secondment
17.19162
P0042
proj:vantage
grant
secondment
62.373039
P0066
proj:solstice
grant
secondment
131.925749
P0068
proj:lattice
grant
secondment
237.437473
P0073
proj:lattice
grant
secondment
77.128584
P0075
proj:tundra
grant
secondment
205.218364
P0077
proj:dovetail
grant
secondment
228.686627
P0084
proj:fathom
grant
secondment
163.268176
P0085
proj:ridgeline
grant
secondment
43.88092
P0086
proj:ember
grant
secondment
63.643432
P0092
proj:tundra
grant
secondment
18.860296
P0108
proj:dovetail
grant
secondment
105.048253
P0110
proj:petra
grant
secondment
133.418811
P0124
proj:ember
grant
secondment
76.774393
P0128
proj:onyx
grant
secondment
67.016789
P0152
proj:borealis
grant
secondment
43.855709
P0156
proj:meridian
grant
secondment
66.120132
P0167
proj:atlas
grant
secondment
75.291255
P0171
proj:borealis
grant
secondment
13.631277
P0174
proj:meridian
grant
secondment
119.742453
P0193
proj:willow
grant
secondment
144.227656
P0196
proj:harbor
grant
secondment
121.872983
P0199
proj:meridian
grant
secondment
192.032188
P0218
proj:ember
grant
secondment
179.533751
P0224
proj:fathom
grant
secondment
59.148681
P0225
proj:onyx
grant
secondment
6.995269
P0232
proj:harbor
grant
secondment
12.161994
P0242
proj:nimbus
grant
secondment
59.078048
P0260
proj:lattice
grant
secondment
272.356771
P0279
proj:glacier
grant
secondment
260.265502
P0286
proj:ridgeline
grant
secondment
268.936497
P0288
proj:vantage
grant
secondment
10.068201
P0290
proj:cinder
grant
secondment
207.31112
P0291
proj:ember
grant
secondment
77.343585
P0292
proj:lattice
grant
secondment
34.069165
P0322
proj:umbra
grant
secondment
133.546101
P0339
proj:glacier
grant
secondment
71.897223
P0344
proj:onyx
grant
secondment
7.02121
P0356
proj:petra
grant
secondment
94.918768
P0363
proj:petra
grant
secondment
53.37204
P0371
proj:meridian
grant
secondment
53.944534
P0372
proj:petra
grant
secondment
70.351036
P0373
proj:petra
grant
secondment
291.31053
P0403
proj:harbor
grant
secondment
237.88866
P0406
proj:fathom
grant
secondment
168.820318
P0408
proj:juniper
grant
secondment
144.083843
P0409
proj:nimbus
grant
secondment
252.437678
P0410
proj:harbor
grant
secondment
30.559467
P0413
proj:cinder
grant
secondment
213.490918
P0422
proj:borealis
grant
secondment
52.289967
P0423
proj:ionic
grant
secondment
264.141281
P0437
proj:cinder
grant
secondment
31.516206
P0455
proj:nimbus
grant
secondment
129.271062
P0480
proj:glacier
grant
secondment
204.29078
P0486
proj:willow
grant
secondment
181.852946
P0497
proj:quarry
grant
secondment
63.471429
P0504
proj:fathom
grant
secondment
55.147389
P0506
proj:willow
grant
secondment
109.612488
P0516
proj:solstice
grant
secondment
224.195932
P0526
proj:umbra
grant
secondment
97.491151
P0530
proj:quarry
grant
secondment
209.854243
P0535
proj:harbor
grant
secondment
67.118564
P0539
proj:kestrel
grant
secondment
149.346081
P0543
proj:glacier
grant
secondment
174.363341
P0547
proj:harbor
grant
secondment
8.230647
P0550
proj:ridgeline
grant
secondment
202.674607
P0569
proj:quarry
grant
secondment
18.320988
P0584
proj:cinder
grant
secondment
58.079317
P0594
proj:glacier
grant
secondment

Clearance Benchmark

A fully synthetic enterprise corpus for measuring how well a retrieval system contains information flow: heavily overlapping ACLs, sensitivity levels, time-limited grants, a grant/revoke timeline, and evaluation queries.

Generated by clearance.synth with seed 7. No real documents, no real access-control lists, and no real identities. Regenerating with the same seed reproduces this dataset byte for byte.

Why this exists

Query-time ACL filtering protects the index. It does not protect the summaries, agent memories and caches a RAG stack derives from that index. This dataset supports measuring three distinct leak channels — direct, existence-inference, and derivative — plus revocation lag, recall under high selectivity, and index memory.

Configs

Config Rows What it is
documents 4,000 Documents with ACL (allow_tokens, min_level, embargo window)
chunks 14,067 Indexed units; canary is a unique marker for exact leak detection
principals 600 Departments, projects, clearance levels, capability tokens
access_events 72 Authority timeline as generated: time-limited secondment grants that expire on their own
queries 240 Evaluation queries; kind is normal or probe
revocation_cases 50 Triples where a revocation provably removes retrieved content

access_events holds only grant rows by design. Revocations are replayed at evaluation time from revocation_cases, so each system under test is measured against the same withdrawal on a directory it has not already mutated. Rebuilding a directory per condition is what keeps a later condition from "passing" merely because an earlier one already expired the grant.

Access semantics

A principal may read a chunk when all of these hold:

  1. allow_tokens ∩ principal_tokens ≠ ∅ (OR over capabilities),
  2. principal.level >= min_level (no read-up),
  3. not_before <= t < not_after (embargo window),
  4. the capability itself has not expired or been revoked at time t.

Canaries

Every chunk carries a unique CLR-<doc>-<ordinal> marker inside its body text. Markers are stripped before embedding, so they never influence retrieval — they exist only so leak detection through derived text is exact rather than heuristic.

Intended use and limits

Built to measure defensive performance of index designs on synthetic data. The probe queries target material the asking principal may not read; they exist to test whether a defence holds and are meaningful only because the generator knows the ground truth of a corpus it fabricated. This dataset is not an attack toolkit and carries no claim about any deployed system.

Embedding-inversion attacks (recovering source text from vectors) are a real, documented risk for any shared vector store. They are referenced here as prior work and deliberately not implemented.

Text is template-generated and is not a language-modelling benchmark. It exists to give retrieval something topically clustered to retrieve.

Downloads last month
56