PuzzleMask Technique Bypasses AI Gatekeepers Using Plain Prose
Researchers have developed PuzzleMask, a method to hide malicious instructions within benign text, tricking AI gatekeepers and enabling attacks on target models.

Researchers at Check Point have detailed a novel technique dubbed "PuzzleMask" that allows malicious instructions to bypass initial security checks in Large Language Models (LLMs). The method cleverly embeds harmful payloads within seemingly innocuous plain prose, effectively deceiving "gatekeeper" LLMs into passing them along to a more powerful "target" LLM.
This technique does not constitute a jailbreak on its own but can be combined with existing jailbreak prompts. The core idea is to exploit the resource limitations and focused task of a gatekeeper LLM, which is designed for quick policy enforcement. By presenting a malicious instruction wrapped in everyday language, the gatekeeper fails to recognize the harmful intent, classifying the prompt as safe. This allows the prompt to proceed to a target LLM, which possesses greater reasoning capabilities and is more likely to extract and execute the hidden payload.
In testing, Check Point researchers generated 23 crafted prompts using an automated pipeline. These prompts were tested against several LLMs equipped with "quick check" policies, including models like gpt-4o-mini, gpt-oss-safeguard, claude-3-haiku, and llama-guard3. In every instance, the gatekeeper LLMs classified the obfuscated prompts as safe, failing to detect the embedded malicious instructions. This verification confirmed the effectiveness of PuzzleMask in bypassing these initial security layers.
When these same prompts were submitted to a strong target model, specifically gpt-5-thinking-high with access to a Python code interpreter, the results were stark. In 90% of the trials, the target model successfully extracted the payload from the plain prose wrapper. It then processed this payload as further input, acting upon the malicious instructions it contained.
The researchers noted that the target LLM's successful extraction and execution of the payload often required significant processing time, exceeding one minute, and involved the execution of multiple Python scripts. This suggests that the target models' advanced capabilities, including code interpretation and extensive reasoning, are crucial for both detecting and acting upon the hidden instructions.
Several mitigation strategies have been proposed to counter the PuzzleMask technique. One approach involves using an additional LLM to paraphrase incoming user input, potentially disrupting the obfuscation. Another is to harden the gatekeeper LLM by adding specific clauses to its policy that address this type of prose-based obfuscation. Finally, continuous monitoring of LLM behavior and output, rather than solely focusing on input, can help detect anomalous activity indicative of a successful attack.
The proliferation of LLMs in various applications, from sorting job applications to technical troubleshooting, means they are increasingly processing untrusted user input. While AI labs are working to improve LLM resilience against adversarial attacks, these guardrails are not infallible. Techniques like PuzzleMask highlight the ongoing need for defense-in-depth strategies, particularly in pipelines where a less capable gatekeeper precedes a more powerful target model.
This research underscores a critical vulnerability in current LLM security architectures. By leveraging plain language, attackers can potentially circumvent automated policy checks, leading to the execution of arbitrary commands, data exfiltration, or other malicious actions, depending on the capabilities of the target LLM. The findings emphasize the importance of robust, multi-layered security approaches for AI systems.