Each of these belongs in your premarket threat register with a scenario, mitigation, and citation. The threat model builder generates a STRIDE-mapped register tailored to your model type and deployment.
Training-data poisoning
Scenario · Adversary injects mislabeled or backdoored samples so the deployed model misclassifies a targeted input class · often silently and only at inference time.
Control · Dataset provenance log, hash-anchored snapshots, statistical outlier detection on retraining batches, signed dataset releases.
Adversarial evasion
Scenario · Crafted input perturbations cause the model to flip its prediction without a clinician noticing the input is anomalous.
Control · PGD / AutoAttack in V&V, input plausibility gates, confidence-calibrated rejection, periodic red-team round.
Model extraction & inversion
Scenario · Query-based attacks reconstruct decision boundaries, recover protected attributes, or infer membership of a specific patient record in the training set.
Control · Per-tenant query rate limits, anomaly detection on query distribution, output coarsening, differential-privacy training where feasible.
Prompt injection (LLM / foundation)
Scenario · User-supplied or upstream-document content overrides the system prompt, exfiltrating data or triggering off-label clinical advice.
Control · Strict input/output channel separation, allowlisted tools, output classifier, refusal eval suite, no tool execution on untrusted strings.
Weight / artifact tampering
Scenario · Model weights, tokenizer, or post-processing code are modified in storage or transit, producing silent behaviour drift after deployment.
Control · Sigstore / cosign signatures on model artifacts, integrity check at load time, immutable artifact registry, AI-BOM coverage of weights.
Upstream foundation-model drift
Scenario · Third-party foundation provider silently retrains or deprecates the base model, breaking the locked behaviour assumed in the submission.
Control · Pin model version + provider SLA, regression eval gate, fallback to last-validated snapshot, supplier change-notification clause.