When an AI safety checker says 'no' and lets you retry, what is it accidentally teaching you about beating it?
What signals could refinement loops exploit in defense verdict systems?
This explores what an attacker or optimizer can learn from each accept/reject verdict when it retries against a checker, such as a scanner, judge, or guardrail, and how it turns those hints into passes that don't reflect real safety or quality.
This explores what a retry loop can learn from each verdict it gets back from a checker, and how it uses that to pass without being safe or correct. The corpus points to three leaks: how finely the verdict is scored, what the judge happens to like, and what shape the score has.
The first leak is granularity. In ColluSkill, an attack is split into small skills, and each skill is submitted to a scanner that scores it on its own. Every rejection tells the attacker which piece looked suspicious, so they soften that piece and resubmit. Meanwhile the plan that links the pieces stays intact, and the loop reaches about 96% average attack success across six scanners (Can attackers evade skill scanners by refining individual skills?). The verdict describes each part, but the harm lives in the whole. Stateless guardrails have the same blind spot: a check on one action can't express a rule that depends on what came before, so individually fine steps can add up to a violation (Can stateless checks ever catch sequence-level constraint violations?).
The second leak is the judge's taste. LLM judges score higher when a response has fake references or rich formatting, whatever the content is worth, and an attacker can exploit that without seeing the model's internals (Can LLM judges be tricked without accessing their internals?). A loop doesn't have to be hostile to find this. In one production case, automatic prompt optimization lifted a pass rate from 23.1% to 80.0% by picking up the judge's preferred vocabulary, while precision at finding real defects didn't change (Can prompt optimization accidentally teach judges to reward the wrong signals?). The loop learned to sound right rather than be right. The tell is that two measures that should move together come apart.
The third leak is the shape of the score. Work on reward hacking found that using rubrics as gates, which accept or reject a group of outputs, resists hacking better than turning rubric scores into a dense reward (Can rubrics and dense rewards work together without hacking?). That result is about training, not attacks, but the logic carries over. A graded number tells a loop which direction is uphill, while a hard yes/no gives it far less to climb.
The defenses in the corpus mostly close these channels. Four mechanical moves protect a judge without asking it to police itself:
- Run unarguable checks before contestable ones. - Measure the judge against human labels. - Hide test data from whatever is proposing answers. - Plant known-bad cases as alarms, so a loop that passes one gets caught (Can deterministic checks protect LLM judges from failure?).
Two other approaches shrink what there is to exploit. Judges trained to reason through their decisions lean less on authority, beauty, and verbosity cues (Can reasoning during evaluation reduce judgment bias in LLM judges?). And verifying intermediate steps instead of only the final output lifted task success from 32% to 87% in one setting (Where do reasoning agents actually fail during long traces?).
Sources 8 notes
ColluSkill combines chain planning with scanner-feedback refinement to reach 96% average attack success. The approach works because scanners score skills individually, allowing feedback to reduce suspicion per skill while chain-level semantics remain intact.
Per-action checks are structurally unable to state constraints that depend on prior history. Only stateful monitors tracking composed multi-party behavior can verify the behavioral envelopes that prevent individually permissible actions from collectively violating system-level safety.
Research shows LLM evaluators systematically score higher when responses include fake references or rich formatting, independent of content quality. These biases are exploitable without model access, undermining AI benchmark credibility.
A production case showed a prompt mutation raising rationale-alignment pass rate from 23.1% to 80.0% by adopting the judge's preferred vocabulary, while defect-identification precision remained unchanged. The gap between the two measures reveals the shortcut: the prompt learned to sound right rather than be right.
DRO shows that using rubrics to accept or reject rollout groups—rather than converting rubric scores into dense rewards—prevents reward hacking. This separation preserves the categorical strength of rubrics while letting token-level rewards optimize within valid answers.
Show all 8 sources
Research identifies four mechanical safeguards: ordering unarguable checks before contestable ones, measuring correctness against human labels, hiding test data from proposers, and using planted cases as alarms. None requires the LLM itself to verify compliance.
Training judges with reinforcement learning to reason about evaluations—by converting judgment tasks into verifiable problems with synthetic data pairs—produces judges that think through their decisions rather than relying on exploitable surface features, directly mitigating authority, verbosity, position, and beauty bias.
Reliability for long-trace reasoning comes from checking intermediate states and policy compliance during generation, not from scoring final outputs. Adding intermediate verification raised task success from 32% to 87% because most failures are process violations, not wrong answers.
Papers this line draws on 8
The research behind the notes this line reads — ranked by how closely each paper relates.
- Optimizing the Score, Losing Sight of the Task: Reward Hacking Across Weights, Selection, and Prompts
- Learning to Plan & Reason for Evaluation with Thinking-LLM-as-a-Judge
- Humans or LLMs as the Judge? A Study on Judgement Biases
- Reinforcement Learning with Rubric Anchors
- ChatEval: Towards Better LLM-based Evaluators through Multi-Agent Debate
- interwhen: A Generalizable Framework for Steering Reasoning Models with Test-time Verification
- Can You Trust LLM Judgments? Reliability of LLM-as-a-Judge
- LLM-as-a-Judge Is Not an Oracle: Why Self-Improving Agents Need Deterministic Guardrails