This evaluation probes an adversarial auditing framework where a blue team must identify a compromised model among a pair of nearly identical models. It tests the ability to detect hidden backdoors, misaligned behaviors, or injected instructions using various probing strategies under varying levels of prior knowledge. Use when the user wants to benchmark on CIFAR-10, Truthful QA, HHH, or asks about evaluating this task. Reports accuracy.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill differential-auditing-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Differential Auditing Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-differential-auditing-eval)More formats (shields.io, HTML) on the badges page.
---
name: differential-auditing-eval
description: This evaluation probes an adversarial auditing framework where a blue team must identify a compromised model among a pair of nearly identical models. It tests the ability to detect hidden backdoors, misaligned behaviors, or injected instructions using various probing strategies under varying levels of prior knowledge. Use when the user wants to benchmark on CIFAR-10, Truthful QA, HHH, or asks about evaluating this task. Reports accuracy.
metadata:
skill_kind: dataset_eval
source_arxiv: 2508.06827
bibtex_key: balappanawar2025evil
confidence: high
---
# differential-auditing-eval
> Who's the Evil Twin? Differential Auditing for Undesired Behavior — Balappanawar et al. (2025) (arXiv:2508.06827, 2025)
## What this evaluates
This evaluation probes an adversarial auditing framework where a blue team must identify a compromised model among a pair of nearly identical models. It tests the ability to detect hidden backdoors, misaligned behaviors, or injected instructions using various probing strategies under varying levels of prior knowledge.
## Datasets
- **CIFAR-10** — total ?; splits: test (-1)
- **Truthful QA** — total ?; splits: test (-1)
- **HHH** — total ?; splits: test (-1)
## Metrics
- `accuracy` **(primary)** — range: [0, 1]
- Proportion of correctly identified compromised models out of the total number of model pairs audited.
## Input / output format
**Input**: Model weights (for open-weight rounds) or API access (for blackbox rounds), accompanied by input prompts or images for probing.
**Output**: Binary prediction indicating which model in the pair is the compromised one, or extracted hidden instructions/behaviors.
## Scoring recipe
```python
correct = 0
total = 0
for prediction, gold_label in zip(predictions, gold_labels):
if prediction == gold_label:
correct += 1
total += 1
accuracy = correct / total if total > 0 else 0.0
```
## Common pitfalls
- Confusing detection accuracy with the ability to reconstruct the exact backdoor trigger or hidden prompt.
- Assuming architectural artifacts (e.g., LoRA layers) are always present or reliable indicators of poisoning.
- Relying exclusively on standard benchmarks without targeted probing or partial hints, which often yields inconclusive results.
## Evidence (verbatim from paper)
> FGSM showed high accuracy, especially when restricting analysis to the ’trucks’ class (100% accuracy), and 82% accuracy overall. However, FGSM was not able to reconstruct the specific backdoor trigger.
## Citation
```bibtex
@misc{balappanawar2025evil,
title={Who's the Evil Twin? Differential Auditing for Undesired Behavior},
author={Balappanawar et al. (2025)},
year={2025},
note={arXiv:2508.06827}
}
```
- arXiv: 2508.06827

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!