ACL2025
Adversarial Tokenization
Renato Lui Geh, Zilei Shao, Guy Van den Broeck
摘要
Current LLM pipelines account for only one possible tokenization for a given string, ignoring exponentially many alternative tokenizations during training and inference. For example, the standard Llama3 tokenization of penguin is [p,enguin], yet [peng,uin] is another perfectly valid alternative. In this paper, we show that despite LLMs being trained solely on one tokenization, they still retain semantic understanding of other tokenizations, raising questions about their implications in LLM safety. Put succinctly, we answer the following question: can we adversarially tokenize an obviously malicious string to evade safety and alignment restrictions? We show that not only is adversarial tokenization an effective yet previously neglected axis of attack, but it is also competitive against existing state-of-the-art adversarial approaches without changing the text of the harmful request. We empirically validate this exploit across three state-of-the-art LLMs and adversarial datasets, revealing a previously unknown vulnerability in subword models. github.com/RenatoGeh/advtok Algorithm 1 Compilation Input string x, upper bound k, reference v Output MRMDD M 0..k 1 Compile MDD M from x 2 Create k + 1 copies M 0 , M 1 , . . . , M k 3 for each edge e = (i, j) ∈ M do 4 if e |= v then 5 Mark edges M (i) l , M (j) l , ∀l ∈ [0..k] 6 else 7 Add edges M (i) l , M (j) l-1 , ∀l ∈ [1..k] 8 Prune all paths that are unmarked or do not end at a terminal node in M 0 9 return M 0..k := (M 0 , M 1 , . . . , M k )