test(clustering): factory honors ip_pool: rotating + 3-level truth labels
Fifth and final commit of the identity-resolution substrate. Unblocks fixture 2 (vpn_hopping) by making the synthetic factory match production shape: an actor rotating across N IPs produces N SyntheticAttacker rows that share fingerprints + truth_identity_id but differ on ip / asn — exactly the shape the future clusterer needs to recover via JA3/HASSH match. Factory: * SyntheticSession + SyntheticAttacker gain truth_identity_id field. * DSL: ip_pool: rotating + rotation_count: N produces N observation rows per actor. Optional rotation_asns: [...] cycles ASN per row; defaults to the actor's primary asn. * Sessions distribute round-robin across the actor's rotated rows. * Noise scanners get truth_identity_id == truth_actor_id == truth_campaign_id (each is its own singleton at every level). * GeneratedCorpus.truth_labels(level=) accepts "campaign" (default, back-compat), "identity", or "actor" — picks the oracle the metric harness scores against. Harness: * assert_fixture_bounds gains truth_level kwarg (default "campaign") so identity-resolution fixtures can score against truth_identity_id without churning the campaign-clustering test files. Tests: 9 new (rotation_count emits N rows, shared identity + fingerprints, distinct IPs, rotation_asns distribution + cycling, round-robin session distribution, identity-level truth labels, sticky default unchanged, sessions inherit identity label). 598 tests green across clustering / factories / db / web / bus / profiler / correlation.
This commit is contained in:
@@ -36,16 +36,23 @@ def assert_fixture_bounds(
|
||||
corpus: GeneratedCorpus,
|
||||
predict: PredictFn,
|
||||
expected_path: str | Path,
|
||||
*,
|
||||
truth_level: str = "campaign",
|
||||
) -> dict[str, float]:
|
||||
"""
|
||||
Run `predict` against the corpus, score against ground truth, and
|
||||
assert every metric meets the floor declared in `expected_path`.
|
||||
|
||||
``truth_level`` selects the oracle: ``"campaign"`` (default) for
|
||||
campaign-clustering fixtures, ``"identity"`` for identity-resolution
|
||||
fixtures (where the clusterer's job is to fold N rotated-IP
|
||||
observations into one identity), or ``"actor"`` for completeness.
|
||||
|
||||
Returns the observed metrics dict so callers can do additional
|
||||
assertions (e.g. "homogeneity is *exactly* 1.0 for this fixture").
|
||||
"""
|
||||
bounds = yaml.safe_load(Path(expected_path).read_text(encoding="utf-8"))
|
||||
truth = corpus.truth_labels()
|
||||
truth = corpus.truth_labels(level=truth_level)
|
||||
pred = predict(corpus)
|
||||
metrics = score(truth, pred)
|
||||
|
||||
|
||||
@@ -110,3 +110,209 @@ def test_multi_actor_campaign_shares_campaign_id() -> None:
|
||||
# Both attacker rows must point to the SAME truth_campaign_id —
|
||||
# this is the property fixture 5 (multi_operator) hinges on.
|
||||
assert set(truth.values()) == {"c-shared"}
|
||||
|
||||
|
||||
# ─── ip_pool: rotating — identity-resolution fixture support ────────────────
|
||||
|
||||
|
||||
def test_rotating_ip_pool_emits_one_row_per_rotation_count() -> None:
|
||||
"""
|
||||
``rotation_count: 5`` produces 5 SyntheticAttacker rows for that
|
||||
one DSL actor. Sticky default still produces 1.
|
||||
"""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-rotating",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"asn": 14061,
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 5,
|
||||
"ja3": "JA3-fixed",
|
||||
"hassh": "HASSH-fixed",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1",
|
||||
"target_selector": {"count": 10}}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
assert len(corpus.attackers) == 5
|
||||
|
||||
|
||||
def test_rotating_rows_share_identity_and_fingerprints_but_differ_on_ip() -> None:
|
||||
"""
|
||||
All rotated rows MUST share truth_identity_id, truth_actor_id,
|
||||
truth_campaign_id, ja3, hassh — these are the stable signals the
|
||||
clusterer uses to recover identity. They MUST differ on ip — that's
|
||||
what makes the test interesting.
|
||||
"""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-vpn-hop",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"asn": 14061,
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 5,
|
||||
"ja3": "JA3-fixed",
|
||||
"hassh": "HASSH-fixed",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1",
|
||||
"target_selector": {"count": 5}}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
rows = corpus.attackers
|
||||
# Stable: shared across all 5 rows.
|
||||
assert len({r.truth_identity_id for r in rows}) == 1
|
||||
assert len({r.truth_actor_id for r in rows}) == 1
|
||||
assert len({r.truth_campaign_id for r in rows}) == 1
|
||||
assert len({r.ja3 for r in rows}) == 1
|
||||
assert len({r.hassh for r in rows}) == 1
|
||||
# Rotating: 5 distinct IPs.
|
||||
assert len({r.ip for r in rows}) == 5
|
||||
|
||||
|
||||
def test_rotation_asns_distributed_across_rows() -> None:
|
||||
"""
|
||||
When ``rotation_asns`` is provided, each rotated row gets the
|
||||
corresponding ASN (cycling if shorter than rotation_count).
|
||||
"""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-multi-asn",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"asn": 14061, # primary, ignored when rotation_asns is set
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 5,
|
||||
"rotation_asns": [14061, 7922, 16509, 14618, 13335],
|
||||
"ja3": "x", "hassh": "y",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1",
|
||||
"target_selector": {"count": 5}}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
asns = [r.asn for r in corpus.attackers]
|
||||
assert asns == [14061, 7922, 16509, 14618, 13335]
|
||||
|
||||
|
||||
def test_rotation_asns_cycle_when_shorter_than_count() -> None:
|
||||
"""rotation_asns of length 2 with rotation_count=5 cycles."""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-cycle",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 5,
|
||||
"rotation_asns": [100, 200],
|
||||
"ja3": "x", "hassh": "y",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1"}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
assert [r.asn for r in corpus.attackers] == [100, 200, 100, 200, 100]
|
||||
|
||||
|
||||
def test_sessions_distribute_round_robin_across_rotated_rows() -> None:
|
||||
"""
|
||||
With rotation_count=3 and 9 sessions in a phase, each row should
|
||||
receive 3 sessions (round-robin). This is what makes the clusterer
|
||||
job realistic — every observation row carries its own session
|
||||
timeline that the clusterer joins via shared fingerprints.
|
||||
"""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-rr",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 3,
|
||||
"ja3": "x", "hassh": "y",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1",
|
||||
"target_selector": {"count": 9}}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
counts = sorted(len(r.sessions) for r in corpus.attackers)
|
||||
assert counts == [3, 3, 3]
|
||||
|
||||
|
||||
def test_truth_labels_at_identity_level() -> None:
|
||||
"""
|
||||
corpus.truth_labels(level="identity") returns the identity-level
|
||||
oracle the clusterer is scored against. Rotated rows for one DSL
|
||||
actor share an identity label even though they have distinct
|
||||
attacker_ids.
|
||||
"""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-rot",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 4,
|
||||
"ja3": "x", "hassh": "y",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1",
|
||||
"target_selector": {"count": 4}}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
identity_labels = corpus.truth_labels(level="identity")
|
||||
assert len(identity_labels) == 4 # one per attacker row
|
||||
# All 4 attackers share one identity label.
|
||||
assert len(set(identity_labels.values())) == 1
|
||||
|
||||
|
||||
def test_truth_labels_unknown_level_raises() -> None:
|
||||
spec = _minimal_spec()
|
||||
corpus = generate(spec, seed=0)
|
||||
with pytest.raises(ValueError, match="unknown truth-label level"):
|
||||
corpus.truth_labels(level="campaign-but-spelled-wrong")
|
||||
|
||||
|
||||
def test_sticky_default_unchanged_back_compat() -> None:
|
||||
"""
|
||||
The pre-existing sticky-default path produces exactly one row per
|
||||
actor and assigns truth_identity_id. Smoke-tests that the
|
||||
refactor didn't break the back-compat case.
|
||||
"""
|
||||
corpus = generate(_minimal_spec(), seed=0)
|
||||
assert len(corpus.attackers) == 1
|
||||
assert corpus.attackers[0].truth_identity_id != ""
|
||||
# Default truth_labels still returns campaign labels.
|
||||
labels = corpus.truth_labels()
|
||||
assert set(labels.values()) == {"c-test"}
|
||||
|
||||
|
||||
def test_rotated_sessions_carry_identity_label() -> None:
|
||||
"""SyntheticSession.truth_identity_id matches its parent attacker."""
|
||||
spec = {
|
||||
"campaign": {
|
||||
"id": "c-rot",
|
||||
"actors": [{
|
||||
"id": "a-1",
|
||||
"ip_pool": "rotating",
|
||||
"rotation_count": 3,
|
||||
"ja3": "x", "hassh": "y",
|
||||
}],
|
||||
"phases": [{"name": "delivery", "actor": "a-1",
|
||||
"target_selector": {"count": 6}}],
|
||||
"duration_days": 1,
|
||||
}
|
||||
}
|
||||
corpus = generate(spec, seed=0)
|
||||
by_id = {a.attacker_id: a for a in corpus.attackers}
|
||||
for sess in corpus.sessions:
|
||||
assert sess.truth_identity_id == by_id[sess.attacker_id].truth_identity_id
|
||||
|
||||
Reference in New Issue
Block a user