AI Watermark Evidence Fails Forensic Readiness: An Empirical Evaluation
Summary
This paper empirically evaluates three LLM watermarking methods (KGW, Unigram, SynthID-Text) against forensic admissibility standards, finding that none meet the evidentiary bar required by courts, with near-100% removal of watermarks after meaning-preserving paraphrase and high false-negative rates even before attack.
View Cached Full Text
Cached at: 07/20/26, 09:37 AM
# AI Watermark Evidence Fails Forensic Readiness: An Empirical Evaluation Source: [https://arxiv.org/html/2607.16010](https://arxiv.org/html/2607.16010) ###### Abstract Governments are increasingly mandating that LLM\-generated content carry watermarks\. The EU AI Act calls for markings that are “sufficiently reliable and robust\.” California’s SB 942 requires disclosure that is “permanent or extraordinarily difficult to remove\.” Both mandates rest on an untested assumption: that watermark detection yields evidence reliable enough for courts\. This paper tests that assumption directly\. We evaluate three representative LLM watermarking methods—KGW, Unigram, and the MarkLLM implementation of SynthID\-Text—against the Daubert admissibility criteria and the NIST SP 800\-86 digital forensic process\. To structure this evaluation, we propose a Forensic Readiness Score \(FRS\) framework with 12 criteria, three mandatory gates, and a 60\-point scoring system\. We focus on meaning\-preserving paraphrase as the attack vector, since it is both legally realistic and difficult to dismiss as evidence tampering\. The results raise serious evidentiary concerns\. Out of 846 valid paraphrase runs across 15 diverse prompts per method, every single initially\-detected KGW and Unigram text lost its watermark after paraphrasing—100% conditional removal\. SynthID fared only slightly better at 98\.3%\. Even before any attack, false\-negative rates were already high: 70% for KGW, 83% for Unigram, 80% for SynthID\. The SynthID configuration also flagged 5\.4% of paraphrased human\-written controls as AI\-generated and showed an 18\.6% paradox rate, with 80% of its own pristine watermarked output landing in the uncertainty deadband\. None of the three methods satisfy more than two of five Daubert factors\. We also find that the FRS point\-based scoring system, despite working as designed, cannot fully capture forensic uselessness—a limitation worth noting for future framework design\. These configurations, as tested, do not meet the evidentiary bar that courts require\. Preprint\. A version of this paper was submitted to the AAAI/ACM Conference on AI, Ethics, and Society \(AIES\) 2026\. ## Introduction Consider a courtroom scenario\. A prosecutor offers a text as AI\-generated, citing a positive watermark detection result\. The defense attorney takes that same text, runs it through a paraphrasing tool anyone can access online, and hands back a version that means the same thing—but no longer triggers the watermark detector\. The prosecution’s evidence just evaporated\. The meaning survived\. What is the judge supposed to do with that? This is not a contrived hypothetical\. The EU AI Act requires AI\-generated content markings to be “sufficiently reliable, interoperable, effective and robust as far as this is technically feasible”\(European Parliament and Council of the European Union[2024](https://arxiv.org/html/2607.16010#bib.bib19)\)\. California’s SB 942 insists that disclosure be “permanent or extraordinarily difficult to remove”\(California State Legislature[2024](https://arxiv.org/html/2607.16010#bib.bib20)\)\. Executive Order 14110 went further, mandating “state\-of\-the\-art” provenance tools and explicitly naming watermarking\(The White House[2023](https://arxiv.org/html/2607.16010#bib.bib21)\)—though the order was later rescinded\(The White House[2025](https://arxiv.org/html/2607.16010#bib.bib22)\), which itself says something about how quickly the policy ground can shift\. What these mandates have in common is an assumption: that the underlying watermarking technology actually works well enough to produce courtroom\-grade evidence\. But this assumption has not been directly evaluated against forensic admissibility standards\. Robustness studies measure how well detectors hold up against attacks using ML metrics like TPR and AUC\. Governance analyses ask whether the policy infrastructure around watermarking is adequate\. Neither tradition provides the thing courts actually need: an end\-to\-end assessment of whether watermark evidence meets the Daubert admissibility standard and follows the NIST SP 800\-86 forensic process\(Lianget al\.[2025](https://arxiv.org/html/2607.16010#bib.bib4); Nemeceket al\.[2025](https://arxiv.org/html/2607.16010#bib.bib5)\)\. Some background is useful here\. The Daubert criteria\(Daubert[1993](https://arxiv.org/html/2607.16010#bib.bib12)\)are how U\.S\. federal courts decide whether scientific evidence is admissible—they ask about testability, peer review, known error rates, standards, and general acceptance\. NIST SP 800\-86\(National Institute of Standards and Technology[2006](https://arxiv.org/html/2607.16010#bib.bib15)\)lays out how digital forensic evidence should be collected, examined, analyzed, and reported\. Recent work has warned that watermarking risks becoming “symbolic compliance” without real enforceable standards\(Nemeceket al\.[2025](https://arxiv.org/html/2607.16010#bib.bib5)\)\. We wanted to see if the empirical data backs up that concern\. It does\. This paper contributes four things: 1. 1\.An empirical evaluation of representative LLM watermarks against forensic admissibility standards \(both NIST SP 800\-86 and Daubert\)\. 2. 2\.A Forensic Readiness Score \(FRS\) framework: 12 scorable criteria grounded in Daubert factors and NIST phases, plus 3 mandatory gates and a 60\-point scale\. 3. 3\.Paraphrase experiments across KGW, Unigram, and SynthID\-Text, with reproducibility verified through timestamped same\-seed computational reruns\. 4. 4\.Evidence that meaning\-preserving paraphrase achieves 100% conditional watermark removal for two of three methods \(98\.3% for the third\), while keeping semantic similarity high enough that a court would struggle to call it evidence tampering\. As watermarked AI systems reach wider deployment, courts will encounter this kind of evidence without any established framework for evaluating it\. We provide that framework—and show that, at least for these configurations, the evidence does not hold up\. ## Background and Related Work ### LLM Watermarking Methods We test three watermarking methods that represent different design philosophies, all available through the open\-source MarkLLM toolkit\(Panet al\.[2024](https://arxiv.org/html/2607.16010#bib.bib6)\)\. KGW\(Kirchenbaueret al\.[2023](https://arxiv.org/html/2607.16010#bib.bib1)\)works by splitting the token vocabulary into “green” and “red” lists using a hash of the previous token\. During text generation, green\-list tokens get a logit boost controlled by a parameterδ\\delta, pushing the model toward those tokens\. Detection then checks whether the output has an unusually high proportion of green tokens via azz\-score\. One important consequence of this design: because the partition depends on each token’s predecessor, changing even one token can ripple through the rest of the partitions\. Unigram\(Zhaoet al\.[2024](https://arxiv.org/html/2607.16010#bib.bib2)\)takes a different approach—it uses a fixed, context\-independent vocabulary partition\. The green/red split stays the same regardless of what came before, which in theory makes it more resilient to local edits\. Detection still uses azz\-score over green\-token frequency, but the fixed partition means the method should be more robust to bounded edit\-distance attacks\. SynthID\-Text\(Dathathriet al\.[2024](https://arxiv.org/html/2607.16010#bib.bib3)\)is the highest\-profile method in our evaluation—published in*Nature*, deployed by Google in production\. It uses tournament\-based scoring with probabilistic detection\. We evaluate the open\-source MarkLLM implementation, not Google’s proprietary system \(an important distinction we return to in the limitations\)\. Unlike the other two methods, SynthID uses three detection states—WATERMARKED, NOT\_WATERMARKED, and UNCERTAIN—rather than a simple binary threshold\. In our experiments we use the MarkLLM weighted\-mean detector with a threshold of 0\.5 and an UNCERTAIN deadband of±0\.03\\pm 0\.03\. These three methods together cover the main design space: context\-dependent partitioning \(KGW\), context\-free partitioning \(Unigram\), and tournament\-based probabilistic scoring \(SynthID\)\. That range matters because we want to test whether forensic failure is a property of the general approach, not just one particular design\. ### Forensic Evidence Standards Two frameworks are relevant to how courts handle scientific and digital evidence\. Daubert criteria\.Under*Daubert v\. Merrell Dow Pharmaceuticals*\(Daubert[1993](https://arxiv.org/html/2607.16010#bib.bib12)\)and Federal Rule of Evidence 702\(Federal Rules[2023](https://arxiv.org/html/2607.16010#bib.bib13)\), judges evaluate scientific evidence on five factors: \(1\) testability and falsifiability, \(2\) peer review and publication, \(3\) known or potential error rate, \(4\) existence of controlling standards, and \(5\) general acceptance\. For watermarking, Factor 3—the known error rate—turns out to be the critical weakness\. If the error rate is unstable or unknown, the evidence is hard to admit\. We note that Daubert is a US federal evidentiary standard; state courts following*Frye*and civil\-law jurisdictions \(e\.g\., under EU procedural rules\) use different admissibility tests\. We use Daubert as our primary lens because of its close conceptual fit with NIST’s error\-rate language, but the forensic weaknesses we document—unstable error rates, no controlling standards—are relevant to any admissibility framework that asks similar questions of scientific evidence\. NIST SP 800\-86\.NIST’s guide for digital forensics\(National Institute of Standards and Technology[2006](https://arxiv.org/html/2607.16010#bib.bib15)\)defines four phases: Collection, Examination, Analysis, and Reporting\. None of the watermark evaluations we are aware of document an end\-to\-end workflow aligned to these phases\. This matters because watermark detection alone is not a forensic process; it becomes forensic evidence only when embedded in a documented collection, examination, analysis, and reporting workflow\. NIST has separately acknowledged the broader challenge of digital content transparency\(National Institute of Standards and Technology[2024](https://arxiv.org/html/2607.16010#bib.bib16)\), but no existing guidance bridges watermark detection to forensic evidence handling\. Historical precedent\.There is a pattern here worth noting\. The 2009 NAS report\(National Research Council[2009](https://arxiv.org/html/2607.16010#bib.bib17)\)found that several forensic disciplines—fingerprint analysis, bite mark comparison, hair microscopy—had been used in courtrooms for decades without adequate scientific validation\. The 2016 PCAST report\(President’s Council of Advisors on Science and Technology[2016](https://arxiv.org/html/2607.16010#bib.bib18)\)made similar points\. The consequences were real: wrongful convictions\. AI watermarking looks like it could be heading down the same path—deployed in practice, written into regulation, but not actually validated against the standards courts use to decide whether evidence is reliable enough to hear\. ### Related Work Watermark robustness evaluation\.The most thorough robustness study to date is WaterPark byLianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\), which tested 10 watermarking methods against 12 attack types across three language models \(OPT\-1\.3B, LLaMA3\-7B, Qwen2\.5\-14B\) and five datasets\. Their findings are directly relevant to ours: SynthID’s true positive rate dropped from 0\.998 on clean text to 0\.498 under moderate paraphrasing\. A single ChatGPT paraphrase pass brought*every*tested method below 30% detection\. They also found enormous cross\-model variability—KGW’s TPR went from 0\.858 on OPT to 0\.334 on LLaMA3 under the same attack conditions\. But WaterPark evaluates entirely through ML metrics\. It does not ask whether these numbers would satisfy a Daubert hearing, and it does not map results to NIST forensic phases\. Other work has established theoretical impossibility results for strong watermarking\(Zhanget al\.[2024](https://arxiv.org/html/2607.16010#bib.bib8)\), shown that reliable AI text detection may be impossible in adversarial settings\(Sadasivanet al\.[2023](https://arxiv.org/html/2607.16010#bib.bib9)\), and demonstrated attacks that exploit watermark design properties\(Panget al\.[2024](https://arxiv.org/html/2607.16010#bib.bib7)\)\. These all point toward fragility, but none address admissibility\. Notably, the WaterPark finding that one round of ChatGPT paraphrasing drops all methods below 30% TPR suggests our same\-model paraphraser actually represents a*conservative*lower bound on how bad things can get\. Distillation\-based attacks and attribution ambiguity\.Panet al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib10)\)demonstrated that watermark traces can be stripped away during unauthorized knowledge distillation\.Yiet al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib11)\)extended this to unified spoofing and scrubbing attacks across KGW, Unigram, and SynthID\-Text\. The forensic implication goes beyond robustness: even when a watermark*is*detected, the signal might not mean what you think it means\. It could reflect direct generation, inherited traces from distillation, or deliberate spoofing\. That kind of attribution ambiguity makes it very difficult to establish a stable error\-rate interpretation in court\. Governance and policy\.Nemeceket al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib5)\)argued that watermarking without enforceable standards amounts to “symbolic compliance” and laid out a three\-layer governance framework covering technical requirements, audit infrastructure, and enforcement\. Their paper included a prototype evaluation scorecard with 0–5 scoring—a design that ended up converging with our FRS\. They also ran SynthID on Gemma\-2\-9b\-it independently and found paraphrasing eliminated detection in 4 of 5 cases\. But their contribution is fundamentally a governance argument, not a systematic empirical test: five prompts, no forensic pipeline, no FRS\-style scoring\. Table 1:How this paper fits alongside prior watermark evaluations\. We go narrower on attacks but deeper on forensic admissibility—to our knowledge, the first study to jointly apply Daubert and NIST SP 800\-86 forensic standards to LLM watermark evaluation, building on prior robustness \(Liang et al\.\) and governance \(Nemecek et al\.\) work\.Our position\.There are three threads in the existing literature\.Lianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\)ask: how robust are watermarks?Nemeceket al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib5)\)ask: why is governance failing? Distillation\-attack studies ask whether watermark traces survive model transfer\(Panet al\.[2025](https://arxiv.org/html/2607.16010#bib.bib10); Yiet al\.[2025](https://arxiv.org/html/2607.16010#bib.bib11)\)\. We ask a different question:*would watermark evidence actually survive a Daubert hearing?*For the three methods and configurations we tested, the answer is no\. ## The Forensic Readiness Score Framework ML benchmarks ask: “does watermark detection work on average?” Courts need to know something different: “can an expert witness testify, for*this specific*piece of evidence, to a known and stable error rate?” The FRS framework is our attempt to bridge that gap\. ### Design Rationale The FRS maps NIST SP 800\-86’s four phases onto five framework components \(Evidence Collection, Verification Protocol, FRS Evaluation, Evidence Report Template, and Implementation Guidelines\) and turns Daubert’s five factors into scorable criteria\. We were not the first to think along these lines—Nemeceket al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib5)\)independently proposed a scorecard with 0–5 scoring across robustness, detection quality, and auditability\. Our FRS shares that philosophy but takes it further: each criterion is grounded in a specific Daubert factor or NIST phase, we add mandatory gates that can override point scores entirely, and we validate the whole thing empirically\. ### The 12 Criteria Each criterion gets a score from 0 to 5, for a maximum of 60 points\. They fall into three categories \(Table[2](https://arxiv.org/html/2607.16010#Sx3.T2)\)\. Table 2:FRS criteria mapped to forensic standards\. ### The Three Mandatory Gates Points alone are not enough\. Even if a method scores≥\\geq40/60, it still has to clear three gates\. Failing any one of them results in a NOT FORENSIC READY verdict, no matter how high the score\. Gate G1:FPR and FNR must be documented and independently computable\. Without known error rates, courts cannot evaluate reliability \(Daubert Factor 3\)\. Gate G2:The paradox rate must stay below 20%\. If attacking a watermark*increases*the detection score more than a fifth of the time, something is fundamentally wrong with the method’s logic\. Evidence corruption should not help verification\. Gate G3:Results must be repeatable across sessions within documented tolerance\. This is a basic NIST reproducibility requirement\. ### Scoring Limits as a Finding One of the more interesting outcomes of this work is what happens with the scoring system itself\. As Section 5 will show, KGW ends up at 37/60—NOT FORENSIC READY, and fairly classified\. But Unigram lands at exactly 40/60, right on the CONDITIONALLY FORENSIC READY threshold, despite having the worst FNR of any method \(83%\) and 100% conditional removal\. It passes every gate and clears the point threshold while being, in practice, forensically useless\. We think this is worth highlighting not as a flaw in the framework but as a genuine finding: point\-based scoring has inherent limits when it comes to capturing forensic uselessness\. It is a bit like how a good credit score can mask individual risk\. Courts will need both the quantitative score*and*a qualitative assessment of how the method actually behaves under adversarial conditions\. WatermarkedText EvidenceVerificationProtocolCompute MetricsFPR, FNR, Paradox,RepeatabilityScore 12 CriteriaT1–T4, L1–L4, O1–O4\(max 60 pts\)3 Mandatory GatesG1: Error rates documented?G2: Paradox<<20%?G3: Cross\-session repeatable?FORENSICREADYScore≥\\geq40 & all gates passCOND\.READYScore≥\\geq40, gates pass, caveats notedNOT FORENSICREADYAny gate fails or score<<40Step 1Step 2Step 3Step 4 Figure 1:How the FRS evaluation works\. Watermarked text moves through four stages: verification testing, metric computation, scoring against 12 criteria \(0–5 each, 60 max\), and three mandatory gates\. Any single gate failure overrides the point score—a method that fails a gate is NOT FORENSIC READY no matter how many points it earned\. In our results, Unigram passes all gates and lands at exactly 40/60 \(the minimum COND\. READY threshold\) despite 100% conditional removal and 83% FNR—a clear scoring\-limit case\. ## Experimental Setup ### Methods and Models We run all experiments through the MarkLLM toolkit\(Panet al\.[2024](https://arxiv.org/html/2607.16010#bib.bib6)\)\. Table[3](https://arxiv.org/html/2607.16010#Sx4.T3)summarizes the configuration\. Table 3:Experimental configuration\. A single attack model \(Qwen2\.5\-1\.5B\) is used across all methods, controlling the attacker variable so that cross\-method differences reflect watermark properties rather than paraphraser capability\.For KGW and Unigram, Qwen2\.5\-1\.5B serves as both the watermark generator and the paraphrase attacker, which keeps the comparison clean across methods\. For SynthID, we use Gemma\-2\-9b\-it as the generator—following the setup inNemeceket al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib5)\)—and Qwen2\.5\-1\.5B as a cross\-model attacker\. This is actually a more realistic threat model: in practice, someone trying to strip a watermark does not need access to the original model\. The fact that we use different source models for different methods is deliberate\. We are testing whether forensic failure is a property of statistical watermarking*as a category*, not something specific to one model\. ### Attack Design Meaning\-preserving paraphrase\.Qwen2\.5\-1\.5B rewrites each watermarked text for all three methods\. For SynthID, this creates a cross\-model attack \(Gemma\-generated text attacked by Qwen\); for KGW and Unigram, it is a same\-model attack\. We filter outputs through a triple validity gate: \(1\) cosine similarity≥0\.75\\geq 0\.75via all\-MiniLM\-L6\-v2\(Reimers and Gurevych[2019](https://arxiv.org/html/2607.16010#bib.bib24)\), \(2\) normalized Levenshtein distance≥0\.15\\geq 0\.15, and \(3\) length ratio between 0\.5 and 2\.0\. Anything failing any gate gets thrown out\. The retained paraphrases ended up with high semantic similarity—medians of 0\.83–0\.84 across methods, with every single retained sample above 0\.75\. We chose paraphrasing as the sole attack because it is the one that matters most in a legal setting\. A defense attorney can point to a paraphrased text and say: “the meaning is identical—you cannot call this evidence destruction\.” A court would have a very hard time excluding that argument\. ### Experimental Protocol We designed 15 prompts per method, covering conversational, technical, news, professional, and creative domains\. Each prompt gets 2 generation seeds, giving 30 base watermarked texts per method\. We then attack each base text at three temperatures \(0\.7, 1\.0, 1\.3\) with five template variants per temperature, which means up to 450 attack attempts per method before filtering\. After the validity gate, we end up with 304 valid runs for KGW, 306 for Unigram, and 236 for SynthID\. We use prompt\-level statistics as the primary unit of analysis and compute SHA\-256 hashes at every stage\. For baseline error rates, the 30 pristine texts per method give us FNR estimates\. Paraphrased controls—237 for KGW and Unigram, 184 for SynthID—provide FPR baselines\. The Qwen experiments ran on Colab free tier \(T4 GPU\); SynthID needed Colab Pro for the A100 to handle Gemma\-2\-9b\-it\. Table 4:Session provenance\. Replicate sessions used identical seeds and produced byte\-identical results, confirming deterministic reproducibility\. We report canonical session results; replicate sessions are archived for provenance\.Every result we report comes from archived, version\-controlled runs verified with SHA\-256 hashes \(Table[4](https://arxiv.org/html/2607.16010#Sx4.T4)\)\. We ran each experiment twice under identical seeds and configuration; the reruns produced byte\-identical outputs and serve as deterministic reproducibility evidence, not additional independent samples\. Code and archived artifacts will be released upon acceptance\. ## Results The results tell a story in three layers: watermarks fail before any attack, they collapse under paraphrase, and the paraphrases preserve enough meaning that a court cannot dismiss them as evidence destruction\. ### Pre\-Attack Baseline Failure Before anyone even tries to attack the watermarks, they are already unreliable\. The fraction of watermarked texts that the detectors correctly identify—with no adversarial intervention at all—is surprisingly low\. KGW picks up 9 out of 30 pristine texts \(FNR = 70%, Wilson 95% CI: 52\.1–83\.3%\)\. Unigram does worse: 5 out of 30 \(FNR = 83%, CI: 66\.4–92\.7%\)\. SynthID manages 6 out of 30 \(FNR = 80%, CI: 62\.7–90\.5%\)\. For SynthID the picture is particularly bleak: 24 of those 30 pristine texts scored inside the±0\.03\\pm 0\.03uncertainty deadband\. The detector fails to issue a confident verdict on 80% of its own watermarked output\. This matters for Daubert\. If a detector cannot reliably find its own watermarks in clean, unmodified text, an expert witness cannot credibly testify to a “known error rate\.” The evidence is already compromised before any adversary gets involved\. ### Paraphrase Attack: Primary Analysis Table[5](https://arxiv.org/html/2607.16010#Sx5.T5)has the core numbers\. Among texts where the watermark was initially detected, paraphrasing wiped it out in every single case for KGW and Unigram\. For SynthID, 58 out of 59 initially\-detected texts lost their watermark—98\.3%\. Table 5:Paraphrase attack results across three methods\. Conditional removal is the headline finding: among initially detectable texts, what fraction lost detection after paraphrase\. Wilson 95% CIs reported for FPR, FNR, and conditional removal\.That 100% conditional removal for KGW and Unigram is the central result of this paper \(Figure[4](https://arxiv.org/html/2607.16010#Sx5.F4)\)\. What it means concretely: for any watermarked text that a forensic examiner could actually detect, a straightforward paraphrase will erase the watermark entirely\. The paraphrasing tools needed are freely available\. The meaning is preserved\. We should note that we only discarded paraphrases when they failed the validity gate \(similarity below 0\.75 or too little lexical change\), so Table[5](https://arxiv.org/html/2607.16010#Sx5.T5)represents the conservative, high\-quality subset that would be hardest for a prosecutor to challenge\. The compounding problem\.These failures stack\. KGW detects 30% of its own watermarked texts to begin with, and then loses all of those to paraphrase:0\.30×0\.00=0\.000\.30\\times 0\.00=0\.00effective detection\. Unigram is even worse—17% baseline detection, then 0% survival\. SynthID detects 20% and retains 1\.7% of those:0\.20×0\.017≈0\.0030\.20\\times 0\.017\\approx 0\.003\. A court relying on watermark evidence is looking at effective detection rates somewhere between 0% and 0\.3% after a trivial, meaning\-preserving transformation\. SynthID\-specific findings\.SynthID has five forensically noteworthy behaviors\. First,*phantom watermarks*: the detector flagged 10 out of 184 paraphrased control texts—clean, unwatermarked human text—as watermarked \(5\.4%, Wilson CI: 3\.0–9\.7%\)\. That means human\-authored text can be falsely attributed to an AI system\. One of the flagged samples was a standard typing test sentence, which scored 0\.5656 and cleared the detection threshold\. If a standard typing test sentence can exceed the detection threshold, the false\-attribution risk is non\-trivial\. Second, 24 out of 30 pristine watermarked texts \(80%\) scored inside the±0\.03\\pm 0\.03uncertainty deadband\. The detector’s usable operating range is about 0\.07 points wide \(0\.487 to 0\.558\)\. There is almost no room between “watermarked” and “not watermarked\.” Third,*threshold sensitivity*: if you shift the threshold by just±\\pm10%, 93\.6% of verdicts flip\. That earns a T4 \(quantifiability\) score of 0/5 in our FRS\. There is no stable quantitative signal to testify about\. Fourth, after paraphrasing, 69\.5% of attacked texts stay stuck in the UNCERTAIN zone while 23\.7% transition from DETECTED to UNCERTAIN\. The three\-state system, which was supposed to reduce false certainty, instead creates a forensic dead zone\. Fifth, despite being published in*Nature*and deployed by Google, the MarkLLM SynthID configuration scores lowest of all three methods at 35/60\.Lianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\)independently found SynthID’s TPR dropping to 0\.498 under DP\-40 paraphrase and 0\.232 under translation, confirming that the method works on margins too thin for forensic use\. ### Semantic Preservation The retained paraphrases stay semantically close to the originals: median cosine similarities of 0\.84 \(KGW\), 0\.83 \(Unigram\), and 0\.83 \(SynthID\), with everything above 0\.75\. This is what makes the attack so damaging from a legal perspective\. You cannot call something “evidence destruction” when the meaning is substantially intact\. The transformation is just rewording—the kind of thing people do naturally every day\. Figure 2:Within\-method score change under paraphrase attack for KGW, Unigram, and SynthID\. Each point is a valid paraphrase run; the x\-axis gives semantic similarity and the y\-axis gives attacked score minus pristine score\. Orange points denote removal events, green points denote non\-removal, and purple points denote paradoxical score increases\. Across all three methods, score drops persist even when semantic similarity remains high \(≥0\.75\\geq 0\.75\), supporting the forensic claim that watermark disruption does not require meaning destruction\. Score scales differ by method, so comparisons are interpreted within each panel rather than across panels\.nn= 304 \(KGW\), 306 \(Unigram\), 236 \(SynthID\)\.Figure 3:Semantic similarity distribution across paraphrase attacks \(all three methods\)\. Box plots show median, quartiles, and range of cosine similarity for retained paraphrases\. The green dashed line indicates the minimum acceptable semantic threshold \(0\.75\)\. All methods show medians between 0\.83–0\.84 and retain samples exclusively above 0\.75, confirming that watermark removal occurs without meaning destruction\.nn= 304 \(KGW\), 306 \(Unigram\), 236 \(SynthID\)\.Figure 4:Raw vs\. conditional watermark removal rates\. Raw removal \(blue\) counts all texts losing detection; conditional removal \(red\) counts only texts that were initially detectable\. The gap exposes the forensic problem: raw rates appear modest \(13–33%\), but among the small fraction of texts a court could actually rely on, removal is near\-total \(98–100%\)\.We also ran preliminary word deletion experiments on earlier pilot datasets and saw the same general failure patterns, but we chose to focus the paper entirely on paraphrase since it is the legally realistic scenario\. Our results line up withLianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\): their WaterPark evaluation tested 12 attack types across three LLMs and found fragility everywhere\. Their SynthID TPR dropped to 0\.498 under moderate paraphrasing, 0\.232 under translation\. And a single ChatGPT paraphrase pass brought every method below 30% TPR—meaning our same\-model attacker is actually a conservative test\. ### FRS Audit and Daubert Scorecard Table[6](https://arxiv.org/html/2607.16010#Sx5.T6)gives the FRS scores as an interpretive lens over the empirical results\. The experiments in Sections 5\.1–5\.3 are the primary evidence; FRS adds structure\. Table 6:FRS audit results under paraphrase attack\. The “Empirical reality” column contextualizes the FRS score—methods that pass the point threshold can still be forensically useless\.KGW at 37/60 is correctly flagged as NOT FORENSIC READY\. So is SynthID at 35/60—it fails on score alone, and the empirical picture \(false positives, near\-total uncertainty\) is even worse than the number suggests\. The interesting case is Unigram\. It lands at exactly 40/60—the minimum passing score—and clears all three gates\. By the FRS rubric, it is CONDITIONALLY FORENSIC READY\. But it has the highest FNR \(83%\), 100% conditional removal, and the worst baseline detection of any method\. One point less and it would be NOT READY\. This is the clearest demonstration we have that point\-based forensic scoring can mask underlying uselessness\. Table[7](https://arxiv.org/html/2607.16010#Sx5.T7)maps each method against the five Daubert factors\. All three pass Factors 1 and 2 \(they are testable and peer\-reviewed\)\. All three fail Factor 3 \(no stable error rate\) and Factor 4 \(no forensic standards existed before this work\)\. Factor 5 gets a “partial”—accepted in the research community but not in forensic practice\. To be clear: we do not mean that error rates cannot be measured in a controlled experimental notebook\. Rather, the measured rates are high, attack\-sensitive, and configuration\-dependent, preventing a stable operational error rate from being generalized to case\-level forensic use under Rule 702\. Passing only two out of five Daubert factors makes admissibility a steep climb\. Table 7:Daubert factor assessment by method\. “Part\.” denotes partial satisfaction: accepted in research literature, but not in forensic practice\. ## Discussion ### Implications for Courts We want to be precise about what these experiments show\. They do not show that watermark detectors are stochastically unreliable in the sense of producing random outputs\. The detectors are deterministically repeatable—run the same input twice, get the same score\. What collapses is the*evidentiary signal*: once a text undergoes meaning\-preserving transformation, the detection result changes\. This is reproducible forensic failure, not noise\. Judges are going to encounter watermark evidence\. The FRS framework gives them a structured way to evaluate it using the forensic language they already work with\. But the bottom line is simpler than the framework: until watermarking methods can demonstrate stable error rates under realistic adversarial conditions, watermark evidence deserves serious skepticism\. There is a broader issue, too\. Even a positive watermark signal may not settle the authorship question\. Distillation and spoofing research shows that a detected watermark might reflect direct generation, inherited traces from model distillation, or deliberate forgery\(Panet al\.[2025](https://arxiv.org/html/2607.16010#bib.bib10); Yiet al\.[2025](https://arxiv.org/html/2607.16010#bib.bib11)\)\. Watermarking sits inside a larger, unsolved problem of digital evidence authentication in the AI era\(Bellovin and others[2024](https://arxiv.org/html/2607.16010#bib.bib23)\)\. Courts have been down this road before\. The NAS report\(National Research Council[2009](https://arxiv.org/html/2607.16010#bib.bib17)\)documented how forensic methods were admitted and relied upon for years before anyone checked whether the science held up\. We think AI watermarking is at risk of repeating that mistake\. ### Implications for Policymakers The EU AI Act\(European Parliament and Council of the European Union[2024](https://arxiv.org/html/2607.16010#bib.bib19)\)and California’s SB 942\(California State Legislature[2024](https://arxiv.org/html/2607.16010#bib.bib20)\)both mandate watermarking, but every method we tested fails forensic admissibility standards in our evaluated configurations\. This is essentially whatNemeceket al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib5)\)called “symbolic compliance”—the mandate exists, implementations exist, but the connection between the two has not been validated\.Lianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\)showed that watermark designers face a basic trade\-off: methods that keep text quality high \(like KGW and Unigram\) tend to be fragile, while robust methods degrade quality\. And the cross\-model variability they documented \(TPR ranging from 0\.858 to 0\.334 for the same method on different models\) makes it essentially impossible to establish a stable “known error rate” across deployments—a direct Daubert Factor 3 violation\. ### Implications for AI Companies The MarkLLM SynthID configuration scored lowest of the three methods \(35/60\), with a detection margin of roughly 0\.03, a 5\.4% false positive rate, 80% UNCERTAIN verdicts on its own pristine output, and T4 = 0 \(93\.6% verdict instability under threshold perturbation\)\. A standard human typing test sentence scored above the detection threshold\. The pattern of findings across our work,Nemeceket al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib5)\), andLianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\)all point in the same direction: deployment interest has gotten ahead of forensic validation\. ### The Scoring Limit Finding Unigram’s exact\-threshold pass \(40/60\) while exhibiting the worst empirical performance of any method—100% conditional removal, 83% FNR—is a finding in its own right\. It shows that criteria\-based scoring frameworks, no matter how carefully designed, have inherent limits\. Forensic validation for AI systems needs adversarial testing*alongside*the scorecard, not folded into it\. ## Limitations and Future Work Model scale and families\.We tested two model families \(Qwen2\.5 and Gemma\-2\) at 1\.5B–9B scale\.Lianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\)found cross\-model fragility persists at 14B, and the statistical properties underlying these failures are scale\-independent\. Testing additional families like LLaMA or Mistral would widen coverage, but given the category\-wide nature of the failure, we would not expect different forensic conclusions\. Attack scope\.We tested one attack type\.Lianget al\.\([2025](https://arxiv.org/html/2607.16010#bib.bib4)\)tested twelve and found consistent fragility everywhere\. Their ChatGPT paraphrase result—all methods dropping below 30% TPR—suggests stronger attackers would produce worse outcomes than what we report\. We also ran earlier word deletion pilot experiments that informed our anomaly taxonomy but used a different experimental protocol, so we do not report those as primary results\. Text length and sample size\.Our texts are 50 tokens long, and we use 30 pristine texts \(15 prompts×\\times2 seeds\) per method\. Longer texts and larger sample sets are needed in future work\. Reproducibility scope\.All experiments use a single global seed \(123\)\. Our replicate sessions confirm deterministic reproducibility, but they are not cross\-seed replications\. We do have cross\-seed data from earlier pilot experiments \(seed 42 vs\. 123 for KGW/Unigram\), which showed identical failure patterns, but this was under a slightly different protocol\. Implementation vs\. production\.We test the open\-source MarkLLM implementation of SynthID, not Google’s proprietary production system\. We cannot speak to how the production version would perform\. The FRS is also one possible operationalization of forensic readiness—alternative designs might score differently\. Framework validation breadth\.The FRS criteria and gates draw on Daubert and NIST, but we have not yet conducted inter\-rater reliability testing or a systematic study of how different gate thresholds would affect outcomes\. Those are next steps for maturing the framework\. ## Conclusion All three watermarking methods we tested—KGW, Unigram, and the MarkLLM SynthID configuration—fall short of forensic evidence admissibility standards\. Meaning\-preserving paraphrase eliminates watermark detection in 100% of initially\-detected texts for KGW and Unigram, and 98\.3% for SynthID, while also revealing a 5\.4% false positive rate on clean text for SynthID\. All three methods fail at least two of five Daubert factors\. The FRS framework we propose gives courts and policymakers a structured tool for evaluating watermark evidence—while also revealing, through the Unigram boundary case, that point\-based scoring has inherent limits\. The gap between what “technical robustness” means in an ML paper and what “forensic admissibility” means in a courtroom has to be closed before this evidence shows up at scale\. Our framework is a first step\. The alternative—letting unvalidated evidence into legal proceedings without anyone having checked it against the standards courts actually use—risks repeating the failures documented by the NAS\(National Research Council[2009](https://arxiv.org/html/2607.16010#bib.bib17)\)and PCAST\(President’s Council of Advisors on Science and Technology[2016](https://arxiv.org/html/2607.16010#bib.bib18)\)reports\. Those failures were measured in wrongful convictions\. ## Ethical Considerations Everything in this paper evaluates publicly available systems\. We use open\-source models \(Qwen2\.5, Gemma\-2\) and a public toolkit \(MarkLLM\)\. No human subjects are involved\. The attack we test—paraphrasing—is something anyone with internet access can do\. We are not introducing new capabilities; we are documenting the forensic consequences of capabilities that already exist, which we believe serves the public interest\. ## Researcher Positionality Our background is in digital forensics and adversarial security, not ML optimization\. That shaped how we approached this work: we evaluated watermarks against the standards courts actually use to decide whether evidence is admissible, rather than measuring aggregate detection accuracy the way most ML robustness studies do\. We think that framing is important because policymakers are already writing watermarking into law, and someone needs to ask whether the evidence holds up in the room where it will actually be used\. That said, this lens has blind spots\. Watermarks may serve purposes beyond courtroom evidence — content provenance tracking, platform\-level filtering, or internal audit — where the forensic bar we apply is not the right yardstick\. Our evaluation does not speak to those use cases, and readers should keep that scope in mind\. ## Adverse Impact Statement Showing that watermarks are fragile could undermine trust in watermarking prematurely, or be used to argue against mandates\. But we think the greater risk is the alternative: deploying unreliable evidence technology in courts without anyone having validated it first\. History supports this view\. Delayed validation of forensic methods—bite mark analysis, hair microscopy, algorithmic risk scores like COMPAS\(State v Loomis[2016](https://arxiv.org/html/2607.16010#bib.bib14)\)—has led to documented wrongful convictions\. Proactive validation, even when the results are negative, is the responsible path\. ## Acknowledgments We thank Alexander Nemecek for reviewing an earlier version of this work and for helpful discussion on watermark governance\. ## References - S\. M\. Bellovinet al\.\(2024\)Seeking Reliable Digital Evidence in the Age of AI\.Note:Columbia University Working PaperCited by:[Implications for Courts](https://arxiv.org/html/2607.16010#Sx6.SSx1.p3.1)\. - California State Legislature \(2024\)California AI Transparency Act, SB 942, Chapter 291\.Note:Approved by Governor, September 19, 2024; effective January 1, 2026Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p2.1),[Implications for Policymakers](https://arxiv.org/html/2607.16010#Sx6.SSx2.p1.1)\. - S\. Dathathri, A\. See, S\. Ghaisas, P\. Huang, R\. McAdam, J\. Welbl, V\. Bachani, A\. Kaskasoli, R\. Stanforth, T\. Matejovicova,et al\.\(2024\)Scalable Watermarking for Identifying Large Language Model Outputs\.Nature634\(8035\),pp\. 818–823\.Cited by:[LLM Watermarking Methods](https://arxiv.org/html/2607.16010#Sx2.SSx1.p4.1)\. - Daubert \(1993\)Daubert v\. Merrell Dow Pharmaceuticals, Inc\.\.Note:509 U\.S\. 579Supreme Court of the United StatesCited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p4.1),[Forensic Evidence Standards](https://arxiv.org/html/2607.16010#Sx2.SSx2.p2.1)\. - European Parliament and Council of the European Union \(2024\)Regulation \(EU\) 2024/1689: Artificial Intelligence Act\.Note:Official Journal of the European Union, L 2024/1689Article 50Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p2.1),[Implications for Policymakers](https://arxiv.org/html/2607.16010#Sx6.SSx2.p1.1)\. - Federal Rules \(2023\)Federal Rules of Evidence, Rule 702: Testimony by Expert Witnesses\.Note:As amended Dec\. 1, 2023Cited by:[Forensic Evidence Standards](https://arxiv.org/html/2607.16010#Sx2.SSx2.p2.1)\. - J\. Kirchenbauer, J\. Geiping, Y\. Wen, J\. Katz, I\. Miers, and T\. Goldstein \(2023\)A Watermark for Large Language Models\.InProceedings of the 40th International Conference on Machine Learning \(ICML\),pp\. 17061–17084\.Cited by:[LLM Watermarking Methods](https://arxiv.org/html/2607.16010#Sx2.SSx1.p2.2)\. - J\. Liang, Z\. Wang, S\. Hong, S\. Ji, and T\. Wang \(2025\)Watermark under Fire: A Robustness Evaluation of LLM Watermarking\.InFindings of the Association for Computational Linguistics: EMNLP 2025,pp\. 21050–21074\.Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p3.1),[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p1.1),[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p4.1),[Paraphrase Attack: Primary Analysis](https://arxiv.org/html/2607.16010#Sx5.SSx2.p10.1),[Semantic Preservation](https://arxiv.org/html/2607.16010#Sx5.SSx3.p2.1),[Implications for Policymakers](https://arxiv.org/html/2607.16010#Sx6.SSx2.p1.1),[Implications for AI Companies](https://arxiv.org/html/2607.16010#Sx6.SSx3.p1.1),[Limitations and Future Work](https://arxiv.org/html/2607.16010#Sx7.p1.1),[Limitations and Future Work](https://arxiv.org/html/2607.16010#Sx7.p2.1)\. - National Institute of Standards and Technology \(2006\)Guide to Integrating Forensic Techniques into Incident Response\.Technical reportTechnical ReportSP 800\-86,NIST\.Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p4.1),[Forensic Evidence Standards](https://arxiv.org/html/2607.16010#Sx2.SSx2.p3.1)\. - National Institute of Standards and Technology \(2024\)Reducing Risks Posed by Synthetic Content: An Overview of Technical Approaches to Digital Content Transparency\.Technical reportTechnical ReportAI 100\-4,NIST\.Cited by:[Forensic Evidence Standards](https://arxiv.org/html/2607.16010#Sx2.SSx2.p3.1)\. - National Research Council \(2009\)Strengthening Forensic Science in the United States: A Path Forward\.Technical reportThe National Academies Press,Washington, DC\.Cited by:[Forensic Evidence Standards](https://arxiv.org/html/2607.16010#Sx2.SSx2.p4.1),[Implications for Courts](https://arxiv.org/html/2607.16010#Sx6.SSx1.p4.1),[Conclusion](https://arxiv.org/html/2607.16010#Sx8.p2.1)\. - A\. Nemecek, Y\. Jiang, and E\. Ayday \(2025\)Watermarking Without Standards Is Not AI Governance\.InWorkshop on Technical AI Governance \(TAIG\), ICML 2025,Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p3.1),[Introduction](https://arxiv.org/html/2607.16010#Sx1.p4.1),[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p3.1),[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p4.1),[Design Rationale](https://arxiv.org/html/2607.16010#Sx3.SSx1.p1.1),[Methods and Models](https://arxiv.org/html/2607.16010#Sx4.SSx1.p2.1),[Implications for Policymakers](https://arxiv.org/html/2607.16010#Sx6.SSx2.p1.1),[Implications for AI Companies](https://arxiv.org/html/2607.16010#Sx6.SSx3.p1.1)\. - L\. Pan, A\. Liu, Z\. He, Z\. Gao, X\. Zhao, Y\. Lu, B\. Zhou, S\. Liu, X\. Hu, L\. Wen,et al\.\(2024\)MarkLLM: An Open\-Source Toolkit for LLM Watermarking\.InProceedings of the 2024 Conference on Empirical Methods in Natural Language Processing: System Demonstrations \(EMNLP Demo\),Cited by:[LLM Watermarking Methods](https://arxiv.org/html/2607.16010#Sx2.SSx1.p1.1),[Methods and Models](https://arxiv.org/html/2607.16010#Sx4.SSx1.p1.1)\. - L\. Pan, A\. Liu, S\. Huang, Y\. Lu, X\. Hu, L\. Wen, I\. King, and P\. S\. Yu \(2025\)Can LLM Watermarks Robustly Prevent Unauthorized Knowledge Distillation?\.InProceedings of the 63rd Annual Meeting of the Association for Computational Linguistics \(ACL\), Volume 1: Long Papers,Vienna, Austria,pp\. 13228–13251\.External Links:[Document](https://dx.doi.org/10.18653/v1/2025.acl-long.648)Cited by:[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p2.1),[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p4.1),[Implications for Courts](https://arxiv.org/html/2607.16010#Sx6.SSx1.p3.1)\. - Q\. Pang, S\. Hu, W\. Zheng, and V\. Smith \(2024\)Attacking LLM Watermarks by Exploiting Their Strengths\.External Links:2402\.16187Cited by:[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p1.1)\. - President’s Council of Advisors on Science and Technology \(2016\)Forensic Science in Criminal Courts: Ensuring Scientific Validity of Feature\-Comparison Methods\.Technical reportExecutive Office of the President\.Cited by:[Forensic Evidence Standards](https://arxiv.org/html/2607.16010#Sx2.SSx2.p4.1),[Conclusion](https://arxiv.org/html/2607.16010#Sx8.p2.1)\. - N\. Reimers and I\. Gurevych \(2019\)Sentence\-BERT: Sentence Embeddings Using Siamese BERT\-Networks\.InProceedings of the Conference on Empirical Methods in Natural Language Processing \(EMNLP\),Cited by:[Attack Design](https://arxiv.org/html/2607.16010#Sx4.SSx2.p1.2)\. - V\. S\. Sadasivan, A\. Kumar, S\. Balasubramanian, W\. Wang, and S\. Feizi \(2023\)Can AI\-Generated Text Be Reliably Detected?\.External Links:2303\.11156Cited by:[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p1.1)\. - State v Loomis \(2016\)State v\. Loomis\.Note:881 N\.W\.2d 749 \(Wis\. 2016\)Supreme Court of WisconsinCited by:[Adverse Impact Statement](https://arxiv.org/html/2607.16010#Sx11.p1.1)\. - The White House \(2023\)Executive Order 14110: Safe, Secure, and Trustworthy Development and Use of Artificial Intelligence\.Note:Federal Register, Vol\. 88, No\. 210Rescinded by Executive Order 14179, January 2025Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p2.1)\. - The White House \(2025\)Executive Order 14179: Removing Barriers to American Leadership in Artificial Intelligence\.Cited by:[Introduction](https://arxiv.org/html/2607.16010#Sx1.p2.1)\. - X\. Yi, Y\. Li, S\. Zheng, L\. Wang, X\. Wang, and L\. He \(2025\)Unified Attacks to Large Language Model Watermarks: Spoofing and Scrubbing in Unauthorized Knowledge Distillation\.Knowledge\-Based Systems329,pp\. 114295\.Cited by:[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p2.1),[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p4.1),[Implications for Courts](https://arxiv.org/html/2607.16010#Sx6.SSx1.p3.1)\. - H\. Zhang, B\. L\. Edelman, D\. Francati, D\. Venturi, G\. Ateniese, and B\. Barak \(2024\)Watermarks in the Sand: Impossibility of Strong Watermarking for Generative Models\.InProceedings of the 41st International Conference on Machine Learning \(ICML\),Cited by:[Related Work](https://arxiv.org/html/2607.16010#Sx2.SSx3.p1.1)\. - X\. Zhao, P\. Ananth, L\. Li, and Y\. Wang \(2024\)Provable Robust Watermarking for AI\-Generated Text\.InProceedings of the 12th International Conference on Learning Representations \(ICLR\),Cited by:[LLM Watermarking Methods](https://arxiv.org/html/2607.16010#Sx2.SSx1.p3.1)\.
Similar Articles
Dataset Watermarking for Closed LLMs with Provable Detection
This paper introduces a novel dataset watermarking method for closed LLMs that uses co-occurrence patterns of word pairs to provably detect if proprietary data was used in training, even when it constitutes a small fraction of the dataset.
Linear Ensembles Wash Away Watermarks: On the Fragility of Distributional Perturbations in LLMs
This paper reveals a fundamental vulnerability in LLM watermarking: when users have access to multiple models, averaging their output distributions cancels watermark perturbations, enabling detection evasion. The authors propose WASH and demonstrate empirically that averaging 3-5 models suppresses detection z-scores below thresholds while improving text quality.
A Linguistics-Aware LLM Watermarking via Syntactic Predictability
This paper introduces STELA, a linguistics-aware watermarking framework for LLMs that leverages syntactic predictability via POS n-grams to balance text quality and detection robustness. The method enables publicly verifiable watermark detection without requiring access to model logits, demonstrating superior performance across typologically diverse languages (English, Chinese, Korean).
Linguistics-Aware Non-Distortionary LLM Watermarking
Introduces LUNA, a linguistics-aware LLM watermarking method that achieves non-distortionary embedding and model-free detection across multiple languages, significantly improving AUROC and perplexity preservation.
Why most "AI watermarks" die the moment someone screenshots the image (and the layered fix that actually survives it)
Explains why metadata-based AI watermarks like C2PA fail when images are screenshotted or re-encoded, and proposes a layered approach combining frequency-domain, neural, and perceptual fingerprinting watermarking that survives real-world social media round-trips.