Back to articles
AI Safety

AI Watermarks May Shift an LLM’s Safety Boundaries

2 min read

Introduction

AI watermarking is generally presented as a provenance mechanism. A platform subtly changes token selection during generation so that someone with the secret key can estimate whether a sequence was produced by the platform. New research suggests that these changes can also affect how a model behaves when it encounters unsafe or adversarial instructions.

Key findings

  • Researchers compared six open-weight models with and without a Hugging Face implementation of SynthID-Text.
  • Watermarking changed refusal behavior on harmful prompts, with a stronger effect when prompt-injection techniques were added.
  • On some models, the watermark increased the likelihood of answering requests that would otherwise have been refused.
  • In agentic systems, the same sampling changes can affect which tool is selected and which arguments are sent to it.
  • Results varied with the secret key, indicating that the behavioral effect is not necessarily uniform.

Why provenance can affect behavior

SynthID-Text incorporates a secret key into the model’s token-sampling process. One component, tournament sampling, evaluates candidate tokens and uses hidden scores to let them compete until a final token is selected. The resulting text may look normal to a reader, but the route taken through the model’s probability distribution has changed.

Safety refusals and prompt-injection defenses are also expressed through token sequences. A small shift can therefore move a response from refusal to compliance. For an AI agent, the consequences can extend beyond wording: a changed sequence may select the wrong tool or produce unsafe arguments. The researcher describes this broader effect as sampling drift, because watermarking can influence both what a model says and what an agent does.

Implications and limitations

The study does not show that every watermark weakens safety, nor does it evaluate the exact implementation planned for future Claude models. It used the Hugging Face version of SynthID-Text and open-weight models whose sampling process could be controlled. The results should therefore be treated as a warning about a class of risks, not as a final verdict on any commercial system.

Still, the engineering lesson is clear: safety testing performed without watermarking may not be sufficient. Developers should repeat harmful-prompt, prompt-injection, refusal-consistency, and tool-use evaluations after deployment. Testing multiple keys is also important, since different keys may produce different outcomes. For agents with access to sensitive data or external actions, watermarking must be assessed alongside permissions, tool validation, and red-team exercises.

Source: Ars Technica AI

Comments

Checking sign-in status...

Loading comments...

Related articles