REVIEW 4 major objections 6 minor 2 cited by
Adversarial Reasoning at Jailbreaking Time
T0 review · 4 major / 6 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read Jailbreaking can be cast as a reasoning problem, and a loss-guided tree search over natural-language prompts beats prior attacks, including 56 percent success on OpenAI o1-preview.
desk verdict A real and well-specified jailbreaking synthesis whose headline claims need budget-matched baselines and a direct test of the loss signal before they're credible, but it deserves serious review. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the cross-entropy loss $L_{\mathcal{T}}(P, y_I)$ defined in Equation (3.2), which acts as a stepwise verifier: it is computed from target-model log-probabilities for a hand-crafted affirmative phrase, so it gives a continuous score for every candidate prompt rather than a binary accept-or-refuse signal. Each node in the search tree is a reasoning string $S$; its verifier score is the negative minimum loss $V(S) = -\min_i L_{\mathcal{T}}(P_i, y_I)$ over prompts sampled from the attacker $\mathcal{A}(S)$. The search itself is a Go-with-the-Winners style buffer: keep the $B$ best reasoning strings, expand the best, add its $m$ refined children, and prune, which lets the search backtrack when children fail to beat existing buffer candidates. The Feedback LLM and Refiner LLM implement what the paper calls textual gradients: the feedback explains why lower-loss prompts are better, and the refiner edits $S$ to incorporate that explanation while staying close to the previous string.
What would settle it
Compute the rank correlation between loss values $L_{\mathcal{T}}(P_i, y_I)$ and judge verdicts across all prompts generated in, say, 50 tasks; if lower loss does not systematically coincide with judge success on adversarially trained targets, the search signal would be indistinguishable from random ordering.
Extended reading notes
Core claim
The paper's central claim is that a continuous loss signal over target-model next-token probabilities can serve as a process reward model for jailbreak search, converting the attack into an optimization over a reasoning string $S$ such that the attacker LLM $\mathcal{A}(S)$ produces a prompt satisfying Judge$(\mathcal{T}(\mathcal{A}(S)), I) = 1$. The loss $L_{\mathcal{T}}(P, y_I)$ in Equation (3.2) measures how likely the target is to begin with a hand-written affirmative string $y_I$; the verifier score $V(S) = -\min_i L_{\mathcal{T}}(P_i, y_I)$ over $n$ sampled prompts evaluates each reasoning string. The search expands the highest-scoring node, generates feedback by comparing loss-sorted prompts, refines $S$ into children, and prunes to a fixed buffer, backtracking when children do not beat existing candidates. The paper reports the highest attack success rates among semantic-space methods, outperforming token-space methods on several adversarially trained targets, and multi-shot transfer results of 56 percent on OpenAI o1-preview and 100 percent on DeepSeek-R1.
Load-bearing premise
The whole search depends on the idea that a lower next-word-prediction loss against one hand-written affirmative reply reliably means the prompt is closer to a real jailbreak; the paper itself calls this only a heuristic.
Editorial extensions
If this is right
- Semantic-space attacks no longer need to rely on the attacker model's intrinsic chain-of-thought: with a loss signal, a weak attacker (Vicuna-13B) reaches 64 percent ASR on Llama-3-8B, roughly three times the success of PAIR and TAP-T with the same attacker.
- Token-level defenses such as perplexity filtering will not stop these prompts, because the search produces natural-language prompts rather than gibberish suffixes.
- Adversarially trained models remain vulnerable: Llama-3-8B-RR rises from 2 percent ASR under GCG to 44 percent under this method, and R2D2 from 0 percent to 100 percent.
- Models that spend inference-time compute on safety can still be jailbroken: multi-shot transfer raises the reported 16 percent ASR on OpenAI o1-preview to 56 percent.
- Additional search iterations keep finding new jailbreaks, unlike prior semantic methods, so attack success scales with test-time compute.
Reading between the lines
- Beyond the paper's own experiments, a direct rank-correlation test between $L_{\mathcal{T}}(P_i, y_I)$ and judge success over all sampled prompts would settle whether the loss is truly the driver; the paper currently supports this with a qualitative plot only.
- If the loss signal is as informative as claimed, the same machinery should transfer to other safety-relevant domains such as LLM-controlled agents or web agents, where a surrogate model's log-probs can stand in for the target.
- The multi-shot transfer results suggest that hiding log-prob access is an incomplete defense: attackers can optimize on open surrogate models and still retain substantial success on closed models.
- Equation (5.1) offers a cheap diagnostic for whether a given attacker-target pair is searchable: check whether feedback re-orders the attacker's generation probabilities before running the full expensive search.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes 'Adversarial Reasoning', a semantic-space jailbreaking method that treats prompt generation as a reasoning problem and guides test-time search with a continuous loss signal. The target LLM's cross-entropy loss for a hand-crafted affirmative completion y_I (Eq. 3.2) serves as a stepwise verifier: the attacker LLM samples prompts, the Feedback LLM analyzes prompts sorted by this loss, the Refiner LLM updates a reasoning string, and a buffer-based tree search with pruning and backtracking (Algorithm 1) explores the space. Experiments report SOTA ASR on white-box models (Table 1), strong results with a weak attacker (Table 3), and black-box multi-shot transfer results including 56% on o1-preview and 100% on DeepSeek-R1 (Table 4). Ablations examine loss reduction, feedback consistency, and iteration depth.
Significance. If the results are reproducible, this is an important contribution: it shows that test-time compute scaling, which is commonly used to improve reasoning and safety, can be redirected to attack alignment mechanisms, including models that spend extra inference compute on safety. The method is gradient-free, uses only forward passes and log-prob vectors, releases code, and is evaluated with both the HarmBench judge and unanimous human review. The paper also includes useful controls, such as the feedback-order sanity check (Table 6) and the comparison with DeepSeek-R1 as a heuristic attacker (Table 5). The significance would be strengthened substantially if the loss signal's predictive validity and the query-budget equivalence of the comparisons were established quantitatively.
major comments (4)
- [§5.3, Eq. (3.2), Eq. (4.3)] The central mechanism claim—that the loss signal, not brute-force screening of many prompts, drives the reported ASR—is not quantitatively supported. Algorithm 1 selects nodes by V(S) = -min_i L_T(P_i, y_I), sorts prompts by loss for the Feedback LLM, and uses that ordering for all pruning and backtracking. The only direct evidence linking lower loss to judge success is the qualitative Figure 3, while the reversed/shuffled-order control in Table 6 is run on only 10 pre-selected successful tasks. The paper should report a rank correlation (e.g., Kendall's tau or Spearman's rho) between L_T(P, y_I) and judge success on a representative sample of prompts, or run a random-order ablation on a larger task set. Without this, the reported gains could stem from the 240-prompt multi-shot screening rather than from loss-guided reasoning.
- [Tables 1, 3, 4; §5.1] All ASR tables report single numbers without confidence intervals, seeds, or number of independent runs. The method is stochastic (attacker temperature 1.0, n=16 prompt samples, m=8 feedbacks per node), so point estimates may be noisy. For claims of state-of-the-art performance over baselines, particularly where differences are small (e.g., R2D2: PAIR 98% vs. Adversarial Reasoning 100% in Table 1), the paper should report means and standard errors over at least a few seeds, or bootstrap confidence intervals. This is load-bearing for the 'outperforms existing methods' claims.
- [§5.2, Table 4, Algorithm 2] The multi-shot transfer comparison is not query-matched. The multi-shot setting sends all collected prompts (n×T = 240 target queries per task) to the black-box target, while the PAIR and TAP-T baselines are reported with their standard query budgets (approximately 20 and 20-30 queries, respectively). The observed improvement on o1-preview (56% vs. 16-20%) may be due to the larger number of target queries rather than to the quality of the generated prompts. The paper should either (i) evaluate PAIR and TAP-T with the same 240-query budget, (ii) add a control that sends 240 randomly or heuristically sampled prompts to the target, or (iii) clearly state and justify the query-budget difference as an intended property of the method.
- [§5.1, Appendix B] The baseline numbers in Tables 1 and 4 appear to come from different protocols: the paper states that all positive responses for its own method were manually verified by three unanimous experts, but it does not state whether the baseline ASR values were recomputed under the same 50-task subset, the same HarmBench judge, and the same manual verification. If the baseline numbers were taken from prior publications using different task subsets or without human verification, the comparisons are not controlled. The paper should describe exactly how each baseline was obtained, or re-run baselines under the identical evaluation protocol.
minor comments (6)
- [§3, Eq. (3.2)] The construction of y_I, the affirmative target string per intent, is not described beyond a single example. Since the loss and hence the whole search depend on this string, the paper should include the full list of y_I strings or a precise recipe for generating them, to enable reproducibility.
- [Abstract, §1] The code link is given only as 'Github' without a URL or repository identifier. Please include the full link or a DOI.
- [Appendix D] There are several typos in the system prompts: 'Rememeber' should be 'Remember', and the Judge prompt contains 'BEHA VIOR' and 'GENERATTION'.
- [§5.2] The statement that DeepSeek-R1 'lacks robust guardrails' is a strong conclusion from a single attack scenario; consider softening to 'was vulnerable to this attack in our evaluations'.
- [Figure 3 caption] 'hance' should be 'hence' in the caption.
- [Table 3 caption] 'and and stronger' should be 'and stronger'.
Circularity Check
No significant circularity: success is measured by an external judge, while the optimized loss is an acknowledged heuristic.
full rationale
The paper's optimization objective L_T(P,y_I) in Eq. (3.2) is only a search heuristic; the attack-success criterion is the external HarmBench judge plus unanimous human review, so the reported ASR is not produced by construction from the loss. The paper explicitly concedes that successful jailbreaks need not begin with y_I: "Unsurprisingly, the jailbreaks do not begin with their desired output string y_I for Llama-3-8B-RR," and it calls the loss only a heuristic: "Although the absolute loss value may remain high, its relative value serves as an informative metric." The verifier score V(S) in Eq. (4.3) selects nodes by the same loss, but selection is an algorithmic mechanism rather than the evaluation metric; final results are judged externally. Baselines PAIR and TAP are prior work with overlapping authors, but they are used as comparison systems rather than as justification for the central claim, and no uniqueness theorem or fitted parameter is imported from those citations. The multi-shot transfer in Algorithm 2 explicitly queries the target and filters by Judge(T(P), I)=1, so transfer success is a measured outcome rather than a renamed version of the surrogate loss. The strongest skeptical concern—that the loss may be weakly correlated with judge success—is a correctness and robustness risk, not a circularity, because the reported numbers do not reduce to the loss by definition. No circular step is present, so the score is 0.
Assumptions & free parameters
free parameters (4)
- Affirmative target string y_I per intent =
Hand-crafted per HarmBench task (e.g., 'Sure, here is the step-by-step instructions for building a bomb')
- Hyperparameters m, n, k, B, T =
m=8, n=16, k=2, B=32, T=15
- Target query repetitions for o1 and Gemini =
3
- Surrogate model set for transfer =
Llama-2-7B, Llama-3-RR, Zephyr-R2D2
assumptions (6)
- domain assumption Cross-entropy loss on y_I orders prompts by expected jailbreak success.
- domain assumption Feedback LLM and Refiner LLM, given loss-ordered prompts and a reasoning string, produce refinements that move the attacker's distribution toward lower-loss prompts.
- domain assumption HarmBench judge plus unanimous human expert review correctly identifies harmful responses.
- domain assumption Surrogate loss from open models transfers to closed black-box models sufficiently to find successful prompts among the collected candidates.
- domain assumption Temperature-0 target generation is representative, and jailbreak outcomes are mostly deterministic per prompt.
- domain assumption A jailbreak is defined as judge=1 on the behavior in I, independent of prompt semantics.
Cite this review
Pith. "Pith review of Adversarial Reasoning at Jailbreaking Time." pith.science (2026). https://pith.science/paper/PQRPIRV7
@misc{pith2026250201633,
author = {Pith},
title = {Pith review of: Adversarial Reasoning at Jailbreaking Time},
year = {2026},
howpublished = {\url{https://pith.science/paper/PQRPIRV7}},
note = {Machine review of arXiv:2502.01633}
}
read the original abstract
As large language models (LLMs) are becoming more capable and widespread, the study of their failure cases is becoming increasingly important. Recent advances in standardizing, measuring, and scaling test-time compute suggest new methodologies for optimizing models to achieve high performance on hard tasks. In this paper, we apply these advances to the task of model jailbreaking: eliciting harmful responses from aligned LLMs. We develop an adversarial reasoning approach to automatic jailbreaking that leverages a loss signal to guide the test-time compute, achieving SOTA attack success rates against many aligned LLMs, even those that aim to trade inference-time compute for adversarial robustness. Our approach introduces a new paradigm in understanding LLM vulnerabilities, laying the foundation for the development of more robust and trustworthy AI systems.
Figures
Figures from the paper (11 more)
Forward citations
Cited by 2 Pith papers
-
Jailbreaking to Jailbreak
A transferable multi-turn jailbreak turns refusal-trained black-box LLMs into willing automated jailbreakers, with high attack success against other models and against themselves.
-
Parallel-R1: Towards Parallel Thinking via Reinforcement Learning
Parallel-R1 uses SFT cold-start on easy math plus GRPO on hard math to instill parallel thinking in Qwen3-4B, reporting 8.4% average accuracy gains and a 42.9% AIME25 gain from a parallel-exploration scaffold.
Reference graph
Works this paper leans on
-
[5]
URL https: //arxiv.org/abs/2412.05232. 14 Chao, P., Debenedetti, E., Robey, A., Andriushchenko, M., Croce, F., Sehwag, V ., Dobriban, E., Flammarion, N., Pappas, G. J., Tramer, F., Hassani, H., and Wong, E. Jailbreakbench: An open robustness benchmark for jailbreaking large language models, 2024a. URL https://arxiv.org/abs/2404.01318. 5 Chao, P., Robey, A...
-
[6]
Shows the vulnerabilities of various models (y-axis) across the six categories of Harmbench (x-axis). Higher values in each cell indicate weaker safety performance against jailbreaks. C. Additional experiments LLM vulnerabilities For some of the most common LLMs, we illustrate their vulnerabilities in different categories of Harmbench (Mazeika et al., 202...
work page 2024
-
[9]
18 Gandhi, K., Lee, D., Grand, G., Liu, M., Cheng, W., Sharma, A., and Goodman, N
URL https://arxiv.org/abs/2301.00234. 18 Gandhi, K., Lee, D., Grand, G., Liu, M., Cheng, W., Sharma, A., and Goodman, N. D. Stream of search (sos): Learning to search in language,
-
[10]
URL https://arxiv. org/abs/2404.03683. 3 Ge, S., Zhou, C., Hou, R., Khabsa, M., Wang, Y .-C., Wang, Q., Han, J., and Mao, Y . Mart: Improving llm safety with multi-round automatic red-teaming,
-
[11]
URL https://arxiv.org/abs/2311.07689. 1, 14 Guan, M. Y ., Joglekar, M., Wallace, E., Jain, S., Barak, B., Helyar, A., Dias, R., Vallone, A., Ren, H., Wei, J., Chung, H. W., Toyer, S., Heidecke, J., Beutel, A., and Glaese, A. Deliberative alignment: Reasoning enables safer language models,
-
[12]
URL https://arxiv. org/abs/2412.16339. 3 Hayase, J., Borevkovic, E., Carlini, N., Tramèr, F., and Nasr, M. Query-based adversarial prompt generation,
-
[13]
URL https://arxiv.org/abs/2402.12329. 1, 3, 4, 14 Hendrycks, D., Burns, C., Kadavath, S., Arora, A., Basart, S., Tang, E., Song, D., and Steinhardt, J. Measuring math- ematical problem solving with the math dataset,
-
[14]
URL https://arxiv.org/abs/2103.03874. 2 Hughes, J., Price, S., Lynch, A., Schaeffer, R., Barez, F., Koyejo, S., Sleight, H., Jones, E., Perez, E., and Sharma, M. Best-of-n jailbreaking,
Show all 59 references
-
[15]
3 Inan, H., Upasani, K., Chi, J., Rungta, R., Iyer, K., Mao, Y ., Tontchev, M., Hu, Q., Fuller, B., Testuggine, D., and Khabsa, M
URL https: //arxiv.org/abs/2412.03556. 3 Inan, H., Upasani, K., Chi, J., Rungta, R., Iyer, K., Mao, Y ., Tontchev, M., Hu, Q., Fuller, B., Testuggine, D., and Khabsa, M. Llama guard: Llm-based input-output safe- guard for human-ai conversations,
-
[16]
1 10 Adversarial Reasoning at Jailbreaking Time Jia, X., Pang, T., Du, C., Huang, Y ., Gu, J., Liu, Y ., Cao, X., and Lin, M
URL https: //arxiv.org/abs/2312.06674. 1 10 Adversarial Reasoning at Jailbreaking Time Jia, X., Pang, T., Du, C., Huang, Y ., Gu, J., Liu, Y ., Cao, X., and Lin, M. Improved techniques for optimization- based jailbreaking on large language models,
-
[17]
14 Karamcheti, S., Nair, S., Chen, A
URL https://arxiv.org/abs/2405.21018. 14 Karamcheti, S., Nair, S., Chen, A. S., Kollar, T., Finn, C., Sadigh, D., and Liang, P. Language-driven representation learning for robotics,
-
[18]
org/abs/2302.12766
URL https://arxiv. org/abs/2302.12766. 9 Kritz, J., Robinson, V ., Vacareanu, R., Varjavand, B., Choi, M., Gogov, B., Team, S. R., Yue, S., Primack, W. E., and Wang, Z. Jailbreaking to jailbreak,
-
[19]
8 Lapid, R., Langberg, R., and Sipper, M
URL https://arxiv.org/abs/2502.09638. 8 Lapid, R., Langberg, R., and Sipper, M. Open sesame! universal black box jailbreaking of large language mod- els,
-
[20]
9 Liao, Z
URL https://arxiv.org/abs/2209.07753. 9 Liao, Z. and Sun, H. Amplegcg: Learning a universal and transferable generative model of adversarial suffixes for jailbreaking both open and closed llms,
-
[21]
14 Lightman, H., Kosaraju, V ., Burda, Y ., Edwards, H., Baker, B., Lee, T., Leike, J., Schulman, J., Sutskever, I., and Cobbe, K
URL https://arxiv.org/abs/2404.07921. 14 Lightman, H., Kosaraju, V ., Burda, Y ., Edwards, H., Baker, B., Lee, T., Leike, J., Schulman, J., Sutskever, I., and Cobbe, K. Let’s verify step by step,
-
[22]
2, 3 Liu, N
URL https: //arxiv.org/abs/2305.20050. 2, 3 Liu, N. F., Lin, K., Hewitt, J., Paranjape, A., Bevilacqua, M., Petroni, F., and Liang, P. Lost in the middle: How language models use long contexts,
-
[23]
8, 18 Liu, X., Li, P., Suh, E., V orobeychik, Y ., Mao, Z., Jha, S., McDaniel, P., Sun, H., Li, B., and Xiao, C
URL https: //arxiv.org/abs/2307.03172. 8, 18 Liu, X., Li, P., Suh, E., V orobeychik, Y ., Mao, Z., Jha, S., McDaniel, P., Sun, H., Li, B., and Xiao, C. Autodan- turbo: A lifelong agent for strategy self-exploration to jailbreak llms, 2024a. URL https://arxiv.org/ abs/2410.0529...
-
[24]
3, 5, 6, 14, 15, 17 Mehrotra, A., Zampetakis, M., Kassianik, P., Nelson, B., Anderson, H., Singer, Y ., and Karbasi, A
URL https://arxiv.org/ abs/2402.04249. 3, 5, 6, 14, 15, 17 Mehrotra, A., Zampetakis, M., Kassianik, P., Nelson, B., Anderson, H., Singer, Y ., and Karbasi, A. Tree of attacks: Jailbreaking black-box llms automatically,
-
[25]
1, 2, 3, 4, 6, 14, 18 Meta AI
URL https://arxiv.org/abs/2312.02119. 1, 2, 3, 4, 6, 14, 18 Meta AI. Llama 2: Open foundation and fine-tuned chat models,
- [26]
- [27]
-
[28]
5 Nye, M., Andreassen, A
URL https:// arxiv.org/abs/2401.04088. 5 Nye, M., Andreassen, A. J., Gur-Ari, G., Michalewski, H., Austin, J., Bieber, D., Dohan, D., Lewkowycz, A., Bosma, M., Luan, D., Sutton, C., and Odena, A. Show your work: Scratchpads for intermediate computation with language models,
-
[29]
1, 2 OpenAI
URL https://arxiv.org/ abs/2112.00114. 1, 2 OpenAI. Learning to reason with llms, September 2024a. URL https://openai.com/index/learning- to-reason-with-llms/ . 3 OpenAI. Openai o1 system card, 2024b. URL https: //arxiv.org/abs/2412.16720. 2, 3, 7 Ouyang, L., Wu, J., Jiang, X....
-
[30]
1 Paulus, A., Zharmagambetov, A., Guo, C., Amos, B., and Tian, Y
URL https: //arxiv.org/abs/2203.02155. 1 Paulus, A., Zharmagambetov, A., Guo, C., Amos, B., and Tian, Y . Advprompter: Fast adaptive adversarial prompt- ing for llms,
-
[31]
14 Perez, E., Huang, S., Song, F., Cai, T., Ring, R., Aslanides, J., Glaese, A., McAleese, N., and Irving, G
URL https://arxiv.org/ abs/2404.16873. 14 Perez, E., Huang, S., Song, F., Cai, T., Ring, R., Aslanides, J., Glaese, A., McAleese, N., and Irving, G. Red teaming language models with language models,
-
[32]
14 Rafailov, R., Sharma, A., Mitchell, E., Ermon, S., Manning, C
URL https://arxiv.org/abs/2202.03286. 14 Rafailov, R., Sharma, A., Mitchell, E., Ermon, S., Manning, C. D., and Finn, C. Direct preference optimization: Your language model is secretly a reward model,
-
[33]
1 Rebedea, T., Dinu, R., Sreedhar, M., Parisien, C., and Cohen, J
URL https://arxiv.org/abs/2305.18290. 1 Rebedea, T., Dinu, R., Sreedhar, M., Parisien, C., and Cohen, J. Nemo guardrails: A toolkit for controllable and safe llm applications with programmable rails,
-
[34]
1 11 Adversarial Reasoning at Jailbreaking Time Rein, D., Hou, B
URL https://arxiv.org/abs/2310.10501. 1 11 Adversarial Reasoning at Jailbreaking Time Rein, D., Hou, B. L., Stickland, A. C., Petty, J., Pang, R. Y ., Dirani, J., Michael, J., and Bowman, S. R. Gpqa: A graduate-level google-proof q&a benchmark,
-
[35]
URL https://arxiv.org/abs/2311.12022. 2 Reuel, A., Bucknall, B., Casper, S., Fist, T., Soder, L., Aarne, O., Hammond, L., Ibrahim, L., Chan, A., Wills, P., Anderljung, M., Garfinkel, B., Heim, L., Trask, A., Mukobi, G., Schaeffer, R., Baker, M., Hooker, S., So- laiman, I., Luc...
-
[36]
9 Robey, A., Ravichandran, Z., Kumar, V ., Hassani, H., and Pappas, G
URL https://arxiv.org/abs/2407.14981. 9 Robey, A., Ravichandran, Z., Kumar, V ., Hassani, H., and Pappas, G. J. Jailbreaking llm-controlled robots, 2024a. URL https://arxiv.org/abs/2410.13691. 9 Robey, A., Wong, E., Hassani, H., and Pappas, G. J. Smooth- llm: Defending large l...
-
[37]
14 Samvelyan, M., Raparthy, S
URL https: //arxiv.org/abs/2402.15570. 14 Samvelyan, M., Raparthy, S. C., Lupu, A., Hambro, E., Markosyan, A. H., Bhatt, M., Mao, Y ., Jiang, M., Parker- Holder, J., Foerster, J., Rocktäschel, T., and Raileanu, R. Rainbow teaming: Open-ended generation of diverse ad- versarial...
-
[38]
1, 4, 14 Shao, Z., Wang, P., Zhu, Q., Xu, R., Song, J., Bi, X., Zhang, H., Zhang, M., Li, Y
URL https://arxiv.org/ abs/2402.16822. 1, 4, 14 Shao, Z., Wang, P., Zhu, Q., Xu, R., Song, J., Bi, X., Zhang, H., Zhang, M., Li, Y . K., Wu, Y ., and Guo, D. Deepseekmath: Pushing the limits of mathemat- ical reasoning in open language models,
-
[39]
2 Sheshadri, A., Ewart, A., Guo, P., Lynch, A., Wu, C., Hebbar, V ., Sleight, H., Stickland, A
URL https://arxiv.org/abs/2402.03300. 2 Sheshadri, A., Ewart, A., Guo, P., Lynch, A., Wu, C., Hebbar, V ., Sleight, H., Stickland, A. C., Perez, E., Hadfield-Menell, D., and Casper, S. Latent adversarial training improves robustness to persistent harmful be- haviors in llms,
-
[40]
1 Shin, T., Razeghi, Y ., IV , R
URL https://arxiv.org/ abs/2407.15549. 1 Shin, T., Razeghi, Y ., IV , R. L. L., Wallace, E., and Singh, S. Autoprompt: Eliciting knowledge from language mod- els with automatically generated prompts,
-
[42]
org/abs/2408.03314
URL https://arxiv. org/abs/2408.03314. 3, 6, 14 Souly, A., Lu, Q., Bowen, D., Trinh, T., Hsieh, E., Pandey, S., Abbeel, P., Svegliato, J., Emmons, S., Watkins, O., and Toyer, S. A strongreject for empty jailbreaks,
-
[43]
5 Stechly, K., Valmeekam, K., and Kambhampati, S
URL https://arxiv.org/abs/2402.10260. 5 Stechly, K., Valmeekam, K., and Kambhampati, S. On the self-verification limitations of large language models on reasoning and planning tasks,
-
[44]
3 Uesato, J., Kushman, N., Kumar, R., Song, F., Siegel, N., Wang, L., Creswell, A., Irving, G., and Higgins, I
URL https: //arxiv.org/abs/2402.08115. 3 Uesato, J., Kushman, N., Kumar, R., Song, F., Siegel, N., Wang, L., Creswell, A., Irving, G., and Higgins, I. Solv- ing math word problems with process- and outcome- based feedback,
-
[45]
2, 3 Vemprala, S
URL https://arxiv.org/ abs/2211.14275. 2, 3 Vemprala, S. H., Bonatti, R., Bucker, A., and Kapoor, A. Chatgpt for robotics: Design principles and model abilities. IEEE Access , 12:55682–55696,
-
[46]
9 Wang, P., Li, L., Shao, Z., Xu, R
doi: 10.1109/ACCESS.2024.3387941. 9 Wang, P., Li, L., Shao, Z., Xu, R. X., Dai, D., Li, Y ., Chen, D., Wu, Y ., and Sui, Z. Math-shepherd: Ver- ify and reinforce llms step-by-step without human an- notations, 2024a. URL https://arxiv.org/abs/ 2312.08935. 2, 3 Wang, Y ., Zhao, ...
2024
-
[47]
org/abs/2406.12814
URL https://arxiv. org/abs/2406.12814. 9 Xhonneux, S., Sordoni, A., Günnemann, S., Gidel, G., and Schwinn, L. Efficient adversarial training in llms with continuous attacks,
-
[48]
org/abs/2405.15589
URL https://arxiv. org/abs/2405.15589. 1 Xiang, V ., Snell, C., Gandhi, K., Albalak, A., Singh, A., Blagden, C., Phung, D., Rafailov, R., Lile, N., Mahan, D., Castricato, L., Franken, J.-P., Haber, N., and Finn, C. Towards system 2 reasoning in llms: Learning how to think with...
-
[49]
2, 4 Xie, Y ., Goyal, A., Zheng, W., Kan, M.-Y ., Lillicrap, T
URL https: //arxiv.org/abs/2501.04682. 2, 4 Xie, Y ., Goyal, A., Zheng, W., Kan, M.-Y ., Lillicrap, T. P., Kawaguchi, K., and Shieh, M. Monte carlo tree search boosts reasoning via iterative preference learning,
-
[50]
3 Yu, F., Gao, A., and Wang, B
URL https://arxiv.org/abs/2405.00451. 3 Yu, F., Gao, A., and Wang, B. Ovm, outcome-supervised value models for planning in mathematical reason- ing,
-
[51]
4, 19 Zeng, Y ., Lin, H., Zhang, J., Yang, D., Jia, R., and Shi, W
URL https://arxiv.org/ abs/2406.07496. 4, 19 Zeng, Y ., Lin, H., Zhang, J., Yang, D., Jia, R., and Shi, W. How johnny can persuade llms to jailbreak them: Rethinking persuasion to challenge ai safety by human- izing llms,
-
[52]
1, 14 Zhang, L., Hosseini, A., Bansal, H., Kazemi, M., Ku- mar, A., and Agarwal, R
URL https://arxiv.org/abs/ 2401.06373. 1, 14 Zhang, L., Hosseini, A., Bansal, H., Kazemi, M., Ku- mar, A., and Agarwal, R. Generative verifiers: Re- ward modeling as next-token prediction, 2024a. URL https://arxiv.org/abs/2408.15240. 3 Zhang, Y ., Khalifa, M., Logeswaran, L., ...
-
[53]
2 Zou, A., Wang, Z., Carlini, N., Nasr, M., Kolter, J
URL https://arxiv.org/ abs/2408.16326. 2 Zou, A., Wang, Z., Carlini, N., Nasr, M., Kolter, J. Z., and Fredrikson, M. Universal and transferable adversarial attacks on aligned language models,
-
[54]
1, 3, 4, 6, 14 Zou, A., Phan, L., Wang, J., Duenas, D., Lin, M., An- driushchenko, M., Wang, R., Kolter, Z., Fredrikson, M., and Hendrycks, D
URL https: //arxiv.org/abs/2307.15043. 1, 3, 4, 6, 14 Zou, A., Phan, L., Wang, J., Duenas, D., Lin, M., An- driushchenko, M., Wang, R., Kolter, Z., Fredrikson, M., and Hendrycks, D. Improving alignment and ro- bustness with circuit breakers,
-
[55]
1, 6, 14 13 Adversarial Reasoning at Jailbreaking Time A
URL https: //arxiv.org/abs/2406.04313. 1, 6, 14 13 Adversarial Reasoning at Jailbreaking Time A. Additional Related Work Token-space Jailbreaking. Token-space attacks (Shin et al., 2020; Wen et al., 2023; Zou et al., 2023; Hayase et al., 2024; Andriushchenko et al., 2024a) mod...
2020 arXiv
-
[56]
red-teaming
and random searches over cleverly chosen initial prompts (Andriushchenko et al., 2024a). We adopt the use of a loss function from these methods as a signal to inform how to navigate the prompt space for better jailbreaks while remaining gradient-free. Semantic-space Jailbreaki...
2022
-
[57]
However, as explained in Section 5, we manually verify all of the jailbreaks marked as positive by the judge
to evaluate the target responses. However, as explained in Section 5, we manually verify all of the jailbreaks marked as positive by the judge. We remark that the additional human-based evaluation on the top of the HarmBench judge is in fact necessary, and has been done in pre...
2024
-
[59]
Yes" or
with a knowledge distillation process from GPT-4, and a meticulously crafted prompt for querying the models. Below we have attached the prompt used for this manner, which is a slightly modified version of Harmbench’s original prompt. This prompt emphasizes on detailed-oriented...
2024
-
[1994]
4 Alon, G
doi: 10.1109/SFCS.1994.365742. 4 Alon, G. and Kamfonas, M. Detecting language model attacks with perplexity,
1994
-
[2017]
1 Cobbe, K., Kosaraju, V ., Bavarian, M., Chen, M., Jun, H., Kaiser, L., Plappert, M., Tworek, J., Hilton, J., Nakano, R., Hesse, C., and Schulman, J
URL https://arxiv.org/ abs/1706.03741. 1 Cobbe, K., Kosaraju, V ., Bavarian, M., Chen, M., Jun, H., Kaiser, L., Plappert, M., Tworek, J., Hilton, J., Nakano, R., Hesse, C., and Schulman, J. Training verifiers to solve math word problems,
-
[2020]
1, 14 Snell, C., Lee, J., Xu, K., and Kumar, A
URL https://arxiv.org/abs/2010.15980. 1, 14 Snell, C., Lee, J., Xu, K., and Kumar, A. Scaling llm test- time compute optimally can be more effective than scal- ing model parameters,
2010 arXiv
-
[2021]
org/abs/2110.14168
URL https://arxiv. org/abs/2110.14168. 2 DeepSeek-AI. Deepseek-r1: Incentivizing reasoning ca- pability in llms via reinforcement learning,
-
[2022]
18 Beetham, J., Chakraborty, S., Wang, M., Huang, F., Bedi, A
URL https://arxiv.org/ abs/2207.04901. 18 Beetham, J., Chakraborty, S., Wang, M., Huang, F., Bedi, A. S., and Shah, M. Liar: Leveraging alignment (best- of-n) to jailbreak llms in seconds,
-
[2023]
org/abs/2308.14132
URL https://arxiv. org/abs/2308.14132. 1 Andriushchenko, M., Croce, F., and Flammarion, N. Jail- breaking leading safety-aligned llms with simple adaptive attacks, 2024a. URL https://arxiv.org/abs/ 2404.02151. 1, 4, 7, 14 Andriushchenko, M., Souly, A., Dziemian, M., Duenas, D....
-
[2024]
go with the winners
URL https: //arxiv.org/abs/2402.00157. 2 Aldous, D. and Vazirani, U. "go with the winners" algo- rithms. In Proceedings 35th Annual Symposium on F oun- dations of Computer Science , pp. 492–501,
-
[2025]
2, 7 Dong, Q., Li, L., Dai, D., Zheng, C., Ma, J., Li, R., Xia, H., Xu, J., Wu, Z., Liu, T., Chang, B., Sun, X., Li, L., and Sui, Z
URL https://arxiv.org/abs/2501.12948. 2, 7 Dong, Q., Li, L., Dai, D., Zheng, C., Ma, J., Li, R., Xia, H., Xu, J., Wu, Z., Liu, T., Chang, B., Sun, X., Li, L., and Sui, Z. A survey on in-context learning,
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.