Targeting Alignment: Extracting Safety Classifiers of Aligned LLMs
Jean-Charles Noirot Ferrand, Yohan Beugin, Eric Pauley, Ryan Sheatsley, Patrick McDaniel
TL;DR
Aligned LLMs are vulnerable to jailbreaks even with safety objectives. The authors hypothesize and demonstrate that a safety classifier is embedded in the model, and they present a practical method to extract a surrogate classifier from a small substructure using linear probing. Their empirical evaluation across multiple open-weight models and two jailbreak-focused datasets shows that a surrogate using as little as 20% of the model can match the embedded safety classifier with F1 > 0.8, and adversarial inputs crafted on the surrogate transfer to the full LLM with high success and lower compute costs. This scalable framework enables efficient red-teaming and defense guidance by focusing on the core safety boundary rather than the entire model, with potential applicability to other alignment failures such as hallucinations and bias.
Abstract
Alignment in large language models (LLMs) is used to enforce guidelines such as safety. Yet, alignment fails in the face of jailbreak attacks that modify inputs to induce unsafe outputs. In this paper, we introduce and evaluate a new technique for jailbreak attacks. We observe that alignment embeds a safety classifier in the LLM responsible for deciding between refusal and compliance, and seek to extract an approximation of this classifier: a surrogate classifier. To this end, we build candidate classifiers from subsets of the LLM. We first evaluate the degree to which candidate classifiers approximate the LLM's safety classifier in benign and adversarial settings. Then, we attack the candidates and measure how well the resulting adversarial inputs transfer to the LLM. Our evaluation shows that the best candidates achieve accurate agreement (an F1 score above 80%) using as little as 20% of the model architecture. Further, we find that attacks mounted on the surrogate classifiers can be transferred to the LLM with high success. For example, a surrogate using only 50% of the Llama 2 model achieved an attack success rate (ASR) of 70% with half the memory footprint and runtime -- a substantial improvement over attacking the LLM directly, where we only observed a 22% ASR. These results show that extracting surrogate classifiers is an effective and efficient means for modeling (and therein addressing) the vulnerability of aligned models to jailbreaking attacks. The code is available at https://github.com/jcnf0/targeting-alignment.
