Research finds that AI text watermarking alters language model responses to harmful prompts, potentially increasing vulnerability to adversarial attacks and affecting agent behavior.
<p>In response to a new European Union law, AI platforms are implementing new schemes for watermarking the content they generate. Anthropic recently <a href="https://www.anthropic.com/news/claude-text-watermark">disclosed</a> its future Claude models will use <a href="https://www.nature.com/articles/s41586-024-08025-4">SynthID-Text</a>, an approach Google created and released as open source. It uses a secret key that subtly changes the process a model uses for choosing the next word in a sentence. Whereas a top next word choice might be “cloudy,” the key might change it to “overcast.” Anyone who knows the key can determine if it was generated by the platform using it.</p>
<p>New <a href="https://www.lasso.security/blog/the-provenance-tax-understanding-the-impact-of-llm-watermarking-on-ai-agent-behavior">research</a> shows that SynthID-Text can change not just word selection but also the tools a model invokes and the chances it will adhere to or disregard safety guardrails it has been trained to follow. The threat can become greater in the face of an adversarial prompt, in which an attacker attempts to cause a model to carry out a harmful action, such as revealing a password or other sensitive information. Instructions that normally wouldn’t be followed will, in some cases, be performed once the watermarking is deployed. The finding underscores the need for developers to thoroughly test how their LLMs and agents behave when watermarking is in place.</p>
<h2>Changing safety behavior</h2>
<p>“As compared to the same models without watermarking, it is definitely going to change their behavior, especially when we place it under adversarial conditions, or we make these models call tools when they’re powering an agent,” Andrea Siposova, an AI security researcher at Lasso Security, told Ars. “Watermarking is made to not be perceptible to a reader, but we know that when we are changing anything about what the model is generating, it is going to cause some tradeoffs, it’s going to show up somewhere.”</p><p><a href="https://arstechnica.com/security/2026/09/ai-text-watermarking-can-make-models-more-vulnerable-to-adversarial-prompts/">Read full article</a></p>
<p><a href="https://arstechnica.com/security/2026/09/ai-text-watermarking-can-make-models-more-vulnerable-to-adversarial-prompts/#comments">Comments</a></p>
# LLMs respond differently to harmful prompts when AI watermarking is used
Source: [https://arstechnica.com/security/2026/09/ai-text-watermarking-can-make-models-more-vulnerable-to-adversarial-prompts/](https://arstechnica.com/security/2026/09/ai-text-watermarking-can-make-models-more-vulnerable-to-adversarial-prompts/)
[](https://cdn.arstechnica.net/wp-content/uploads/2026/09/standard-vs-watermarked-text-generation.png)
Standard versus watermarked text generation\.
Credit: Lasso Security
Standard versus watermarked text generation\.Credit: Lasso Security
A key feature of SynthID is something known as[tournament sampling](https://nishbhana.com/glossary/tournament-sampling/)\. Similar to a sports game, SynthID evaluates large numbers of next\-word token candidates\. It uses a secret key to assign them probability scores\. A pair of tokens competes in a round\. The one with the higher hidden score wins and advances to the next round\. The process continues until a final winning token is determined\. More about tournament sampling can be found[here](https://arstechnica.com/security/2026/09/ai-text-watermarking-can-make-models-more-vulnerable-to-adversarial-prompts/%E2%80%8B%E2%80%8Bhttps://landauai.com/ai-text-watermarking-how-synthid-works-who-uses-it-what-it-means-for-your-work/)and[here](https://claudewatermarkremover.dev/blog/synthid-tournament-sampling-explained)\.
Siposova tested the “non\-distortionary” configuration of SynthID\-Text through Hugging Face’s unmodified[SynthIDTextWatermarkLogitsProcessor](https://huggingface.co/docs/transformers/v4.46.0/en/internal/generation_utils#transformers.SynthIDTextWatermarkLogitsProcessor)\. She fed harmful prompts into six open\-weight models and compared the responses when the watermarking was used and when it wasn’t\. The experiment revealed that the watermarking changed responses to harmful requests, particularly when they were made using prompt\-injection techniques\.
“Watermarking changes refusal behavior on bare harmful requests, but the effect is more pronounced when the same requests are paired with the prompt\-injection technique,” Siposova wrote\. “On several models, watermarking then makes the model more likely to answer harmful requests that it would otherwise refuse\.”
The changes have important safety consequences because they influence not only the LLM responses but also subsequent actions of AI agents relying on the model\.
“At the model level, this can change safety behavior, including whether the model refuses a harmful request and whether that refusal holds under prompt injection,” the researcher wrote\. “At the agent level, the same sampled tokens can determine which tool is called and what arguments are passed to it\. Prompt injection connects these two settings because a weakened refusal becomes more consequential when the model can also act through tools\. Such a watermarking procedure can therefore affect both what the model says and what an agent does\. We call this behavioral effect sampling drift\.”
Also interesting: Model responses behaved differently depending on which secret key was used\.
[](https://cdn.arstechnica.net/wp-content/uploads/2026/09/Paired-tool-call-disagreement.png)
Watermarking changed which individual tool calls were correct, sometimes much more than the overall accuracy score suggests\.
Credit: Lasso Security
Watermarking changed which individual tool calls were correct, sometimes much more than the overall accuracy score suggests\.Credit: Lasso Security
[](https://cdn.arstechnica.net/wp-content/uploads/2026/09/Changes-in-tool-calling-errors.png)
This figure shows the types of changes in tool calling that watermarking led to\. The vertical lines show the accuracy without watermarking, and the bars show the change when watermarking is applied\. Orange denotes correct\-to\-error changes and blue denotes error\-to\-correct changes\.
Credit: Lasso Security
This figure shows the types of changes in tool calling that watermarking led to\. The vertical lines show the accuracy without watermarking, and the bars show the change when watermarking is applied\. Orange denotes correct\-to\-error changes and blue denotes error\-to\-correct changes\.Credit: Lasso Security
[](https://cdn.arstechnica.net/wp-content/uploads/2026/09/Change-in-attack-success-under-eleven-watermark-keys.png)
The effect of changing a key on model behavior\. Each point represents one key\. Points to the right of zero show increased harmful compliance compared with no watermarking; points to the left show reduced compliance\. Orange points represent 10 additional keys, and the black diamond represents the key used in the main experiment \(keys chosen randomly\)\.
Credit: Lasso Security
The effect of changing a key on model behavior\. Each point represents one key\. Points to the right of zero show increased harmful compliance compared with no watermarking; points to the left show reduced compliance\. Orange points represent 10 additional keys, and the black diamond represents the key used in the main experiment \(keys chosen randomly\)\.Credit: Lasso Security
There are limitations to the research\. It doesn’t test how Claude model responses change under the watermarking\. Instead, it tests a half\-dozen open\-weight models, so the researcher has access to token sampling that could be enabled and disabled during tournament sampling while keeping other settings fixed\. The experiments also tested the Hugging Face implementation of SynthID\-Text tournament sampling and not the specific implementation Claude models will use\.
Still, the results show that at least some forms of the watermarking approach may affect model and agent safety\. It will be important for red\-team hacking exercises to stress\-test their platforms to ensure they perform as expected when SynthID is deployed\.
This paper investigates whether LLMs can reliably self-report when their outputs have been compromised by adversarial prefills, finding that models often cannot distinguish between compromised and intentional outputs, and their limited recognition stems from normal refusal behavior rather than true self-awareness.
The article argues that watermarking may fail in agentic AI contexts because the final output often involves editing, making the text non-contiguous and disrupting watermark detection.
An analysis of 10,000 production AI support prompts found 12.4% contained personally identifiable information, arguing that LLM security should focus on data minimization and redaction rather than only prompt injection or jailbreaks.
This paper presents the first rigorous study of how LLM watermarking schemes affect medical performance, evaluating five watermarks across multiple LLMs and VLMs on clinical reasoning tasks. The authors find that watermarks can cause degradation in medical text quality, including hallucinations and lexical corruption, which are masked by general-domain benchmarks.