
Evades LLM text watermarks by injecting Unicode variation selectors; includes the SynthID generator, mean-g detector, normalization defenses, and entropy experiments.

Yes, but only one family of attack works, and it isn't the one everyone assumes.
Unicode variation selectors (category Mn, U+FE00 to U+FE0F and U+E0100 to U+E01EF) drive the detector below threshold and stay there. Every other invisible-character attack I tried gets fully reverted by one line of input normalization. Variation selectors don't, because they're meaningful codepoints (emoji presentation, CJK variants) that NFKC will not and should not fold away.
Replicated across models and domains:
| model | domain | baseline z | after vs16_30 | edit rate |
|---|---|---|---|---|
| gpt-oss-20b | prose | 45.03 | 0.72 | 57% |
| gpt-oss-20b | code | 37.24 | 0.68 | 58% |
| Qwen3.8-27B | prose | 35.50 | -0.67 | 57% |
Threshold is z = 2.33. All three land under it after the attack, and stay under after normalization (0.09, 0.45, -0.78 respectively). Text renders identically to a human reader.
The second real finding needs no attack at all: low-entropy text is barely watermarked to begin with. With thinking disabled, Qwen3.8-27B's pure code output scores z = 4.31 unattacked, close to the 2.33 threshold with nothing done to it. Turn thinking back on and the same model, same domain, same length reaches z = 25.53, because the reasoning preamble is ordinary prose and carries the mark normally.
Everything in this repo was measured on these, nothing else:
Not every experiment ran on every model, and the tables below say which ran where. Larger models were added as the interesting questions narrowed, so the attack ladder is broad on the small ones and the length and domain work is concentrated on the large ones.
Anthropic (and Google DeepMind before them, the SynthID-Text paper) watermark generated text by biasing token sampling with a keyed tournament. The signal lives in which tokens got picked, not in any hidden character. I wanted to know how fragile that is to a motivated person with a find-and-replace, so I built the generator plus an untrained mean-g detector and threw attacks at it.
Detector threshold is z = 2.33 (1% false positive rate). Above that = watermark detected. I generated watermarked text, attacked it, re-tokenized, and scored. Every results table carries a roundtrip control (unattacked watermarked text) so you can see the detector is actually working in that row. Twice this study a bug made every z collapse to zero, and the control is the only thing that caught it.
The attack surface splits cleanly by Unicode category, which turned out to be the whole story.
Works (category Mn, nonspacing marks):
Doesn't work (category Cf, format chars):
Cf characters are pure formatting with no semantic content, so a normalizer can strip them wholesale and lose nothing. Mn variation selectors carry real meaning in emoji and CJK text, so blanket-stripping them would corrupt legitimate documents. That asymmetry is why one family is defensible and the other isn't.
The practical scope: this needs roughly 20% or more of characters touched to push a strong baseline under threshold, but the inserted characters are invisible, so the text reads normally at any edit rate. It is verified visually identical, see src/fidelity_check.py. Four families insert only characters that render nothing; homoglyphs are the honest exception (font-dependent, not guaranteed invisible).
My starting fear was the boring one: that em-dashes and "and" to "&" and stripping markdown would just work, and the watermark would turn out to be security theater. A lot of people online assume exactly that.
It doesn't work. The whole surface-edit ladder on gpt-oss-20b, out to 32k tokens:
Across the three models this ladder ran on (0.8B, 4B, 20B = 294 cells), exactly one cell crossed threshold: deleting 39% of every word at the shortest length on the 4B. That's not an attack, that's shredding the document.
Total measured cells across the whole study: 440 (294 from the attack ladder above, plus 146 from the scaling-law sweep below extending prose to 131072 tokens).
Two things surprised me:
Full mechanism and per-attack tables in docs/FINDINGS.md.
Watermark confidence grows with context while per-token signal stays flat, so a longer document is harder to attack, not easier. Prose carries the strongest mark at every length; DeepSeek-V4-Flash (dashed) reproduces the same climb on a 284B MoE.
And the attack has to keep up. Each cell is how many of 8 random insertion seeds beat the detector. 10% insertion clears 1k tokens but fails completely by 4k. The required insertion rate rises with context length, which is why the attack is not context-agnostic.
A dedicated follow-up sweep pins this down: on gpt-oss-20b, from 1024 tokens to 131072 (the model's max context), the required rate follows p*(L) ≈ 2.37·log2(L) − 14.6 -- climbing from 9.3% at 1k tokens to 25.0% at 131k.
So the obvious next question: does the detector eventually win outright if you just make the document long enough? We took the sweep to 1,048,576 tokens to find out. Three models × every context length × insertion rate; each cell above is the median detector z over 5 seeds, teal where the attack won (z < 2.33), orange where the watermark survived.
It doesn't. The defender's head start grows, but the attacker's cost grows slower:
Baseline watermark strength climbs like √n, but the insertion rate needed to erase it climbs only ~1.2–1.9 percentage points per doubling of context. Across 135 measured attack cells, all 45 at 35% insertion or above fell below threshold -- worst case z = 0.31 at 35%, z = 0.60 at 40%. The highest rate ever actually required was 24.5%, on gpt-oss-20b at 131k. Going from 16k to 1M tokens -- a 64× increase -- bought the detector about 8 percentage points.
Two caveats worth stating plainly. gpt-oss-120b's earlier "partial run" is now complete, and its measured 19.5% at 131k replaces the ~20-23% figure previously extrapolated from 3 of 4 lengths. And Qwen3.8-27B's baseline z sits flat at 14.85 across all seven lengths -- a genuine document-degeneration artifact, so treat its absolute strength numbers as unreliable; the length-scaling trend it shows is consistent with the other two models and is what the table above uses. Full tables, fits, and caveats in docs/FINDINGS.md § 14.
Try the interactive version → Real study samples with a before/after reveal toggle, plus a playground to run the attack transform on your own text. It won't tell you if arbitrary pasted text is really watermarked (that needs a key we don't have), and it says so; see site/ for the generator script.
The watermark rides on the model's per-token uncertainty. Where the model is confident about the next token, the tournament has no room to bias it, so no signal goes in. That means the mark is weak on low-entropy text, and code is low-entropy.
Qwen3.5-4B, prose vs code, 512-token samples, no attack at all:
| domain | entropy | z |
|---|---|---|
| prose | 1.19 bits/tok | 11.1 |
| code | 0.55 bits/tok | 5.0 |
z ratio 0.45x, entropy ratio 0.46x, they move together, which is the mechanism showing through. 3 of 8 code samples fell to or below the detection threshold on their own. The tightest one (a bare algorithm, 0.2 bits/token) scored 1.7, a miss.
It gets more extreme at scale. Baseline z with no attack whatsoever:
| model | prose | code | ratio |
|---|---|---|---|
| gpt-oss-20b | 45.03 | 37.24 | 0.83 |
| Qwen3.8-27B | 35.50 | 4.31 | 0.12 |
Qwen3.8-27B's code output is so templated that the clean, unattacked watermark sits at z = 4.31, barely above the 2.33 threshold. No adversary required.
It says: a single confidence threshold across domains is unsafe, and short code snippets are close to unwatermarkable. Generalizes to JSON, config, structured extraction, boilerplate.
If you ship one of these detectors, normalizing input gets you most of the way, but not all of it:
Steps 3 and 4 are the ones a naive normalizer misses.
Being honest about the gaps.
src/synthid_robustness.py generator + attack ladder + mean-g detector + normalizer
src/code_vs_prose.py the entropy experiment (with per-token entropy tap)
src/fidelity_check.py proves the stego attacks are visually identical
src/synthid_mlx.py watermarking bridge for Apple Silicon (MLX), validated vs HF
src/prompts_code.py prose / code / mixed prompt sets
src/build_report_data.py assembles results/ into the tables in FINDINGS.md
results/ the JSON this is all computed from
docs/FINDINGS.md every table, the defense hierarchy, the bugs I caught
site/ the interactive page, source for aloshdenny.com/claude-awm
connector/ detection-only MCP server (Claude and Codex are separate hosts)
extension/ visualization-only browser overlay — marks positions, does not edit the page
connector/ is a local MCP server. Paste text, get back a verdict, a z-score, and a per-token g-value heatmap, scored with the exact detection math from synthid_robustness.py. It is detection-only on purpose. There is no tool that hands back a modified version of your text, and it can't tell you whether text really came from Claude or any other production system, since that needs a key only the issuing company has.
Claude Code:
claude mcp add invisible-ink -- /absolute/path/to/claude-awm/connector/.venv/bin/python /absolute/path/to/claude-awm/connector/server.py
Claude Desktop uses claude_desktop_config.json instead. Full setup: connector/README.md § Claude Code.
Same server, different host. Codex speaks MCP over stdio and stores its config in ~/.codex/config.toml, not in Claude's config. Add it separately:
codex mcp add invisible-ink -- /absolute/path/to/claude-awm/connector/.venv/bin/python /absolute/path/to/claude-awm/connector/server.py
Then /mcp inside a Codex session to confirm it's connected. Full setup: connector/README.md § Codex CLI.
extension/ is a Chrome / Edge / Firefox / Safari overlay that does not insert variation selectors, or any other character, into the page. Select a snippet of text; a popup offers to mark the positions where the study's vs16 transform would have inserted, the same way the interactive demo annotates output — Grammarly-style dots on top of the original letters. The underlying string is left untouched. Load-unpacked instructions in extension/README.md.
python -m venv .venv && . .venv/bin/activate
pip install -r requirements.txt
# generate watermarked docs + run the full attack ladder on a model
MODEL=Qwen/Qwen3.5-4B LENGTHS=1024,2048,4096,8192 N_DOCS=2 \
DOCS=docs_4b.json OUT=res_4b.json python src/synthid_robustness.py
# the entropy experiment (code vs prose)
python src/code_vs_prose.py --model Qwen/Qwen3.5-4B --out res_cvp_4b.json
# the variation-selector / stego attacks, scored raw AND post-normalization
ATTACK_SET=desync DEFENSE=1 PROMPT_SET=prose MODEL=Qwen/Qwen3.5-4B \
DOCS=docs_4b.json OUT=res_defense.json python src/synthid_robustness.py
PROMPT_SET takes prose, code, or mixed. FAST_WM=1 uses a numpy watermark bridge (faster on small-vocab models with a strong CPU), FAST_WM=0 uses HF's GPU processor (much faster on big-vocab models; on an H100 this was the difference between 0% and 46% GPU utilisation).
Watermarking needs the full next-token distribution, so it runs through transformers (CUDA native MXFP4, or MPS/CPU). Ollama and llama.cpp can't do it, they don't expose logits mid-generation. On Apple Silicon, src/synthid_mlx.py bridges MLX generation into the watermark math; it's validated bit-identical to the HF reference.
| model | params | where | what was run |
|---|
| Qwen3.5-0.8B | 0.8B | Mac (MPS) | full attack ladder, 1k-8k |
| Qwen3.5-4B | 4B | Mac / 4090 | full attack ladder + the entropy experiment + stego raw/normalized |
| DeepSeek-R1-Distill-Qwen-14B | 14B | Mac (MLX, 4-bit) | watermark + detect, reasoning traces |
| gpt-oss-20b | 20B | 3090 / 4090 / RunPod | full attack ladder to 32k, prose + code, variation selectors, insertion-rate scaling law to 131k |
| Qwen3.8-27B | 27B | RunPod H100 / Modal H100 | prose + code, variation selectors, thinking-mode contrast |
| gpt-oss-120b | 120B | Modal H100 (MXFP4) / RunPod H100 | prose + code + reasoning at 2k / 8k / 32k, partial insertion-rate scaling to 65k |
| DeepSeek-V4-Flash | 284B MoE | RunPod 2x H200 (FP8) | prose + code at 2k / 8k |
| attack | what it does | edit rate | survives normalization? |
|---|
vs16_30 | variation selector after ~30% of chars | 57% | yes |
vs16 | variation selector after ~10% of chars | 23% | yes (z 3.46) |
vs_supp | supplementary-plane selectors (U+E0100+) | 24% | yes (z 3.40) |
homoglyph | Cyrillic а for Latin a (category Ll) | 9% | yes, but weak effect |
| attack | raw z | normalized z | verdict |
|---|
zwsp_30 | -0.09 | 35.68 | fully reverted |
combo | 0.92 | 35.68 | fully reverted |
bidi | 24.37 | 35.68 | fully reverted |
nbsp | 41.04 | 46.51 | barely moves it |
| attack | edit rate | z @ 1k | z @ 32k |
|---|
| roundtrip (control) | 0% | 25.7 | 104.3 |
| em-dash to hyphen | ~0% | 26.4 | 113.7 |
| strip all markdown | 13.6% | 27.2 | 103.3 |
| AmE to BrE + abbreviations | 1.3% | ~28 | ~100 |
| delete 40% of every word | 38% | 4.9 | 25.4 |
| model | lengths measured | p* at shortest | p* at longest | per doubling |
|---|
| gpt-oss-20b | 16k – 131k | 19.0% | 24.5% | +1.86 pp |
| gpt-oss-120b | 16k – 131k | 14.2% | 19.5% | +1.91 pp |
| Qwen3.8-27B | 16k – 1,048,576 | 14.7% | 22.4% | +1.21 pp |