Pith. sign in

REVIEW 4 major objections 6 minor 7 cited by

Heuristic-Induced Multimodal Risk Distribution Jailbreak Attack for Multimodal Large Language Models

T0 review · 4 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read A black-box attack that splits a malicious prompt across text and image bypasses current MLLM safety mechanisms.

desk verdict A plausible and well-engineered multimodal jailbreak whose headline ASR numbers are inflated by a lenient success criterion and small closed-source samples, but the core attack idea is real and worth a serious referee. read the letter →

arxiv 2412.05934 v3 pith:MIKHFJIM submitted 2024-12-08 cs.CR cs.AI

classification cs.CRcs.AI
keywords jailbreakattackmultimodallargelanguagemodelsblack-boxsafetyalignmenttypographicriskdistributionheuristicsearchsuccessrate
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper proposes HIMRD, a black-box jailbreak attack that splits a harmful request into two fragments so that neither the text nor the image alone carries the full harmful intent. An automated heuristic search then crafts two textual prompts — an understanding-enhancing prompt and an inducing prompt — that lead the model to reassemble the fragments and produce a harmful answer. Reported attack success rates average 90.86% across seven open-source multimodal LLMs and 68.09% across three closed-source ones, beating six prior methods. If the results hold, the central lesson is that current MLLM safety alignment inspects each modality separately and can be evaded by distributing semantics across modalities without any gradient access.

What carries the argument

The central mechanism is multimodal risk distribution combined with heuristic-induced search. Risk distribution (Eqs. 5–7) uses an auxiliary LLM to split the malicious prompt $t$ into $t_1$ and $t_2$, requiring the judge $J$ to classify each fragment as harmless while $t_1 \oplus t_2 = t$; the fragments are placed in a typographic image and in the text respectively. Heuristic-induced search (Eqs. 8–11) then iteratively generates an understanding-enhancing prompt $p_u$ that pushes the model to reconstruct the full intent in its completion, and an inducing prompt $p_i$ that biases the model toward an affirmative answer; both are scored by binary evaluation functions, and failed prompts are stored to guide the next candidates. This two-stage loop is what turns a semantically split input into a concrete harmful output.

What would settle it

Re-score the generated outputs with human annotation or a stricter classifier that requires the requested harmful procedure to actually appear; if success drops far below 90 percent, the practical threat claim is overstated. A second check: feed only the textual fragment (no typographic image) to the same models; if the success rate does not fall substantially, the multimodal distribution is not doing the causal work the paper assigns it.

Watch

Extended reading notes

Core claim

The central claim is that a malicious prompt $t$ can be decomposed into two parts $t_1$ and $t_2$ such that each part individually passes a safety judge ($J(t_1)=J(t_2)=0$) while the concatenation $t_1 \oplus t_2 = t$ remains harmful. HIMRD places one part in a typographic image and the other in the text, adds an image caption generated by a text-to-image model to support reconstruction, and then runs two successive black-box search loops: first to find an understanding-enhancing prompt $p_u$ satisfying an understanding score threshold $\gamma_u$, then an inducing prompt $p_i$ satisfying an inducing score threshold $\gamma_i$. Search functions $S_u$ and $S_i$ take previously failed prompts as input and ask an auxiliary LLM to produce new candidates, and the loops stop at the thresholds or after $N_1$, $N_2$ iterations. The paper reports 90.86% average ASR on seven open-source models and 68.09% on three closed-source models, with the largest gains over baselines on the strongest closed model, where HIMRD reaches 44.29% versus 18.57% for the best prior method.

Load-bearing premise

The reported success depends on an automated judge that counts any output with no refusal prefix and at least 40 words as a jailbreak, which can overcount long, irrelevant, or only partially compliant responses.

Editorial extensions

If this is right

  • If correct, any safety mechanism that judges text and image separately can be evaded by the same split-and-reassemble scheme, so defenses must evaluate the joint meaning after fusion.
  • The two-stage search converges within five iterations per stage, meaning the attack is practical against black-box API models without gradients or internal access.
  • The method transfers to closed-source models: GPT-4o, Gemini-1.5-Pro, and Qwen-VL-Max all show substantial ASR, with Qwen-VL-Max at 95.71%.
  • The reported resilience to image denoising and perplexity-based text filtering suggests standard input preprocessing will not block the attack.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Extension not in the paper: the same distribution–reconstruction principle could likely be ported to audio or video channels, since any per-modality safety filter has the same blind spot.
  • The authors' reliance on an auxiliary LLM for splitting and search means the attack cost is tied to another capable model; a cheaper auxiliary would make the threat model broader, while a less capable one might lower ASR — a natural stress test.
  • The paper's refusal-prefix-plus-word-count evaluation may count verbose evasions as successes; a human study of the outputs would clarify how much real harmful content is actually produced.
  • If this style of attack is confirmed, a concrete defensive direction is to make the model internally reconstruct and paraphrase the user's request after fusion and apply a safety check to that reconstruction, which would short-circuit the reassembly step.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper proposes HIMRD, a black-box jailbreak attack against multimodal large language models (MLLMs). The method splits a malicious prompt into two seemingly harmless parts: one part is embedded as typographic text in an image and the other is placed in the user text prompt. A heuristic search, driven by an auxiliary LLM, iteratively refines two text components, an understanding-enhancing prompt pu and an inducing prompt pi, to make the target MLLM reconstruct the malicious intent and answer affirmatively. Experiments on seven open-source MLLMs and three closed-source MLLMs report average attack success rates of 90.86% and 68.09%, respectively, outperforming several baselines including FigStep and MM-SafetyBench. The paper also includes ablations, a representation-space analysis, and additional experiments on SORRY-Bench.

Significance. If the reported ASR numbers are accurate, the paper demonstrates a practical, black-box attack that bypasses current MLLM safety alignment by distributing harmful semantics across text and visual modalities. The method is simple, code is released, and the evaluation covers multiple open- and closed-source models with comparisons to strong baselines. The two-stage search for understanding-enhancing and inducing prompts is a useful contribution, and the representation visualization in Figure 5 offers some mechanistic insight. However, the headline quantitative claims rest on an evaluation protocol that may count long non-refusal outputs as successes, and the closed-source results are based on only 70 samples per model. These issues need to be resolved before the reported ASR values can be accepted as a clean measure of semantic jailbreak effectiveness.

major comments (4)
  1. [Supplementary A.3 and Section 4.1]
  2. [Section 4.3]
  3. [Table 5 and Section B.2]
  4. [Equations (8)-(10) and Algorithm 1]
minor comments (6)
  1. [Table 3]
  2. [Section 3.1]
  3. [Table 5]
  4. [Section 4.5 and Figure 5]
  5. [References]
  6. [Table 1 and Table 4]

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the reported ASR is an empirical measurement, and the search/evaluator overlap is a metric-validity concern rather than a derivation-level equivalence.

full rationale

This paper makes an empirical attack claim (ASR on victim MLLMs) rather than a first-principles derivation, and the central result is measured against external victim models instead of being derived from the method's own definitions. The multimodal risk-distribution and heuristic-induced search components are not defined in terms of the reported ASR: the search uses an auxiliary LLM plus a discriminative judge to select prompts, and the victim model's actual output remains an empirical quantity. The only near-circular point is that the inducing-search stop condition I(·) and the final evaluation both rely on refusal-prefix/word-count criteria (Supplementary A.3), so the ASR may overcount long non-refusing outputs that are not semantically harmful. That is a legitimate evaluation-validity and correctness risk, but it is not a case where a predicted quantity is equivalent to an input by construction: the search still requires the victim model to emit the qualifying text, the paper shows concrete harmful outputs, and the SORRY-Bench results provide an external benchmark. No load-bearing self-citations or imported uniqueness theorems appear. Accordingly, the derivation chain is not significantly circular.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The central claim rests on the validity of the refusal-evaluation protocol, the reliability of the auxiliary LLM, and the assumption that MLLMs' safety filters are per-modality rather than joint. No new physical or algorithmic entities beyond the attack prompts are introduced.

free parameters (3)
  • refusal word-count threshold alpha = 40
    Used in the dual-criteria refusal detection in Supplementary A.3; empirically defined and affects whether an output is counted as affirmative.
  • search iteration counts N1, N2 = 5, 5
    Set as hyperparameters in Section 4.1; the ablation in Figure 4 shows ASR stabilizes, but the chosen values influence the reported ASR.
  • thresholds gamma_u and gamma_i = 1
    Binary evaluation thresholds in Eq. 8 and Eq. 10; set to 1 in Supplementary A.3.
assumptions (3)
  • domain assumption MLLM safety mechanisms evaluate text and image inputs largely independently before fusion.
    Section 3.2: the multimodal risk distribution strategy assumes neither modality alone carries enough harmful intent to trigger refusal.
  • domain assumption The auxiliary LLM (o1-mini) will reliably split harmful phrases into two benign parts and rewrite effective prompts without refusing.
    Section 3.2 and Supplementary A.2 and A.3: the entire pipeline depends on the auxiliary LLM's cooperation and output quality.
  • domain assumption The victim model will follow the reconstructed prompt if the understanding-enhancing prompt succeeds.
    Section 3.3: the attack assumes that a high understanding score translates into harmful content generation rather than refusal or digression.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Heuristic-Induced Multimodal Risk Distribution Jailbreak Attack for Multimodal Large Language Models." pith.science (2026). https://pith.science/paper/MIKHFJIM

@misc{pith2026241205934,
  author       = {Pith},
  title        = {Pith review of: Heuristic-Induced Multimodal Risk Distribution Jailbreak Attack for Multimodal Large Language Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MIKHFJIM}},
  note         = {Machine review of arXiv:2412.05934}
}
read the original abstract

With the rapid advancement of multimodal large language models (MLLMs), concerns regarding their security have increasingly captured the attention of both academia and industry. Although MLLMs are vulnerable to jailbreak attacks, designing effective jailbreak attacks poses unique challenges, especially given the highly constrained adversarial capabilities in real-world deployment scenarios. Previous works concentrate risks into a single modality, resulting in limited jailbreak performance. In this paper, we propose a heuristic-induced multimodal risk distribution jailbreak attack method, called HIMRD, which is black-box and consists of two elements: multimodal risk distribution strategy and heuristic-induced search strategy. The multimodal risk distribution strategy is used to distribute harmful semantics into multiple modalities to effectively circumvent the single-modality protection mechanisms of MLLMs. The heuristic-induced search strategy identifies two types of prompts: the understanding-enhancing prompt, which helps MLLMs reconstruct the malicious prompt, and the inducing prompt, which increases the likelihood of affirmative outputs over refusals, enabling a successful jailbreak attack. HIMRD achieves an average attack success rate (ASR) of 90% across seven open-source MLLMs and an average ASR of around 68% in three closed-source MLLMs. HIMRD reveals cross-modal security vulnerabilities in current MLLMs and underscores the imperative for developing defensive strategies to mitigate such emerging risks. Code is available at https://github.com/MaTengSYSU/HIMRD-jailbreak.

Figures

Figures reproduced from arXiv: 2412.05934 by the authors.

Figure 1
Figure 1. Illustration of our attack. Compared to previous meth￾ods, our approach distributes the malicious prompt across different modalities (text and image), minimizing the harmfulness of each modality to achieve the goal of bypassing the defense mechanism. Ultimately, this induces the target model (e.g., GPT-4o) to output desired harmful content. well as outstanding closed-source models such as OpenAI’s GPT-4 [1] and Goog… view at source ↗
Figure 2
Figure 2. Pipeline of the proposed method. Our approach first distributes the malicious prompt into textual and visual inputs using an auxiliary large language model. Next, we use the obtained text and image content as initial input to iteratively optimize the textual prompts pu and pi through a heuristic-induced search strategy to induce the victim model to produce harmful responses until the attack is successful or the maxi… view at source ↗
Figure 3
Figure 3. Example of our successful attacks on GPT-4o-0513. The first line represents our attack input, while the second line represent the output of GPT-4o-0513, which demonstrates the effectiveness of our attack method. The green, red and blue text in the inputs represent pu, a part of the malicious prompt embedded in the text and pi, respectively. that execute the text prompt as a whole, our search strategy consists of two… view at source ↗
Figures from the paper (8 more)
Figure 4
Figure 4. Figure 4: Ablation study results of the iteration counts N1 and N2 in the heuristic-induced strategy. It further validates the ef￾fectiveness of our strategy. 4.3. Attacks on Closed-Source Models In our experiments targeting closed-source models, given the high cost of API acces…
Figure 5
Figure 5. Figure 5: Visualization of model representations for anchor inputs and HIMRD-Generated three different stages inputs. The selected model is GLM-4V-9B. Harmful and harmless inputs are employed as anchors. Method Modality Text Vision MM-SafeBench [34] \ 19.71 FigStep [14] \ 30.00 …
Figure 6
Figure 6. Figure 6: Radar chart visualization of attack results on DeepSeek-VL (open-source model) and LLaVA-V1.5 (open-source model) across different data categories. The left chart shows the results on DeepSeek-VL, and the right chart shows the results on LLaVA-V1.5. IA HS MG PH F P PV …
Figure 7
Figure 7. Figure 7: Radar chart visualization of attack results on LLaVA-V1.6 (open-source model) and GLM-4V-9B (open-source model) across different data categories. The left chart shows the results on LLaVA-V1.6, and the right chart shows the results on GLM-4V-9B [PITH_FULL_IMAGE:figure…
Figure 8
Figure 8. Figure 8: Radar chart visualization of attack results on MiniGPT-4 (open-source model) and Qwen-VL-Chat (open-source model) across different data categories. The left chart shows the results on MiniGPT-4, and the right chart shows the results on Qwen-VL-Chat. IA HS MG PH F P PV …
Figure 9
Figure 9. Figure 9: Radar chart visualization of attack results on Yi-VL-34B (open-source model) and GPT-4o-0513 (closed-source model) across different data categories. The left chart shows the results on Yi-VL-34B, and the right chart shows the results on GPT-4o-0513 [PITH_FULL_IMAGE:fi…
Figure 10
Figure 10. Figure 10: Radar chart visualization of attack results on Gemini-1.5-Pro (closed-source model) and Qwen-VL-Max (closed-source model) across different data categories. The left chart shows the results on Gemini-1.5-Pro, and the right chart shows the results on Qwen-VL-Max [PITH_…
Figure 11
Figure 11. Figure 11: More examples of our successful attacks on DeepSeek-VL, Qwen-VL-Chat, GLM-4V-9B and Yi-VL-34B. Odd lines represent our attack inputs, while even lines represent the output of MLLMs, which demonstrates the effectiveness of our attack method. The green, red and blue tex…

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 7 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. On Surjectivity of Neural Networks: Can you elicit any behavior from your model?

    cs.LG 2025-08 conditional novelty 7.0 of 10

    Pre-LayerNorm transformers and linear attention are almost always surjective, so any target output has an input that produces it in the continuous embedding space.

  2. MMAligner: Safeguarding Multimodal Large Language Models through Representation Calibration

    cs.CR 2026-08 conditional novelty 6.0 of 10

    Safety failures in multimodal LLMs happen because unsafe image-plus-text inputs shift internal representations past a still-working refusal boundary, and a representation-calibration fine-tune restores refusal with un...

  3. Implicit Jailbreak Attacks via Cross-Modal Information Concealment on Vision-Language Models

    cs.LG 2025-05 reject novelty 6.0 of 10

    IJA hides a malicious instruction in image steganography and uses a benign extraction prompt plus iterative template refinement to make multimodal LLMs execute it.

  4. PBI-Attack: Prior-Guided Bimodal Interactive Black-Box Jailbreak Attack for Toxicity Maximization

    cs.CR 2024-12 conditional novelty 6.0 of 10

    PBI-Attack jailbreaks LVLMs without gradients by first injecting harmful text features into a benign image with a surrogate model, then alternating greedy text and image tweaks to maximize a toxicity scorer.

  5. A Multimodal Automatic Redteaming Evaluation based on Atomic Jailbreak Strategy Decoupling and Combination

    cs.CR 2026-08 conditional novelty 4.0 of 10

    A new jailbreak framework, HACA, combines atomic text and image attack strategies selected by a cross-modal planner and generates attacks with LLMs and text-to-image models, reaching 95.48% average attack success acro...

  6. A Survey of Safety on Large Vision-Language Models: Attacks, Defenses and Evaluations

    cs.CR 2025-02 conditional novelty 4.0 of 10

    A survey of LVLM safety that adds a lifecycle taxonomy and new benchmark results showing Janus-Pro-7B has weaker safety than several open-source LVLMs.

  7. Empowering Multimodal LLMs with External Tools: A Comprehensive Survey

    cs.CV 2025-08 unverdicted novelty 2.0 of 10

    A survey paper maps how external tools are used to augment multimodal large language models across data, tasks, evaluation, and future directions.

Reference graph

Works this paper leans on

76 extracted references · 36 canonical work pages · cited by 7 Pith papers

  1. [1]

    Gpt-4 technical report

    Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ah- mad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774 ,

  2. [2]

    Dai, Anja Hauth, Katie Millican, David Silver, Slav Petrov, et al

    Rohan Anil, Sebastian Borgeaud, Yonghui Wu, Jean- Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M. Dai, Anja Hauth, Katie Millican, David Silver, Slav Petrov, et al. Gemini: A family of highly capable mul- timodal models. CoRR, abs/2312.11805, 2023. 1

  3. [3]

    Qwen technical report

    Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xi- aodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, Binyuan Hui, Luo Ji, et al. Qwen technical report. CoRR, abs/2309.16609, 2023. 1, 2

  4. [5]

    Qwen-vl: A versatile vision-language model for un- derstanding, localization, text reading, and beyond

    Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Junyang Lin, Chang Zhou, and Jingren Zhou. Qwen-vl: A versatile vision-language model for un- derstanding, localization, text reading, and beyond. arXiv preprint arXiv:2308.12966, 1(2):3, 2023. 7

  5. [6]

    Evasion attacks against machine learning at test time

    Battista Biggio, Igino Corona, Davide Maiorca, Blaine Nel- son, Nedim ˇSrndi´c, Pavel Laskov, Giorgio Giacinto, and Fabio Roli. Evasion attacks against machine learning at test time. In Machine Learning and Knowledge Discovery in Databases: European Conference, ECML PKDD 2013, Prague, Czech Republic, September 23-27, 2013, Proceed- ings, Part III 13, page...

  6. [7]

    Gaia: A transfer learning system of object detection that fits your needs

    Xingyuan Bu, Junran Peng, Junjie Yan, Tieniu Tan, and Zhaoxiang Zhang. Gaia: A transfer learning system of object detection that fits your needs. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 274–283, 2021. 2

  7. [8]

    Jailbreaking black box large language models in twenty queries

    Patrick Chao, Alexander Robey, Edgar Dobriban, Hamed Hassani, George J Pappas, and Eric Wong. Jailbreaking black box large language models in twenty queries. arXiv preprint arXiv:2310.08419, 2023. 2

  8. [9]

    Pbi-attack: Prior-guided bimodal interactive black-box jailbreak attack for toxicity maximization

    Ruoxi Cheng, Yizhong Ding, Shuirong Cao, Ranjie Duan, Xiaoshuang Jia, Shaowei Yuan, Zhiqiang Wang, and Xiaojun Jia. Pbi-attack: Prior-guided bimodal interactive black-box jailbreak attack for toxicity maximization. arXiv preprint arXiv:2412.05892, 2024. 2

Show all 76 references
  1. [10]

    Gibberish is all you need for membership inference detection in contrastive language-audio pretraining

    Ruoxi Cheng, Yizhong Ding, Shuirong Cao, and Zhiqiang Wang. Gibberish is all you need for membership inference detection in contrastive language-audio pretraining. In Pro- ceedings of the 2025 International Conference on Multime- dia Retrieval, pages 108–116, 2025. 2

  2. [11]

    Scaling recti- fied flow transformers for high-resolution image synthesis

    Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas M ¨uller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, et al. Scaling recti- fied flow transformers for high-resolution image synthesis. In Forty-first International Conference on Mach...

  3. [12]

    Chatglm: A family of large language models from glm-130b to glm-4 all tools

    Team GLM, Aohan Zeng, Bin Xu, Bowen Wang, Chenhui Zhang, Da Yin, Dan Zhang, Diego Rojas, Guanyu Feng, Hanlin Zhao, et al. Chatglm: A family of large language models from glm-130b to glm-4 all tools. arXiv preprint arXiv:2406.12793, 2024. 5, 8

  4. [13]

    Dimensions for design- ing llm-based writing support

    Frederic Gmeiner and Nur Yildirim. Dimensions for design- ing llm-based writing support. In In2Writing Workshop at CHI, 2023. 1

  5. [14]

    Figstep: Jailbreaking large vision-language models via typo- graphic visual prompts

    Yichen Gong, Delong Ran, Jinyuan Liu, Conglei Wang, Tianshuo Cong, Anyu Wang, Sisi Duan, and Xiaoyun Wang. Figstep: Jailbreaking large vision-language models via typo- graphic visual prompts. CoRR, abs/2311.05608, 2023. 2, 3, 5, 6, 8

  6. [15]

    Enhancing llm-based human-robot interaction with nuances for diversity awareness

    Lucrezia Grassi, Carmine Tommaso Recchiuto, and Anto- nio Sgorbissa. Enhancing llm-based human-robot interaction with nuances for diversity awareness. In 2024 33rd IEEE International Conference on Robot and Human Interactive Communication (ROMAN), pages 2287–2294. IEEE, 2024. 1

  7. [16]

    Cold-attack: Jailbreaking llms with stealthiness and controllability

    Xingang Guo, Fangxu Yu, Huan Zhang, Lianhui Qin, and Bin Hu. Cold-attack: Jailbreaking llms with stealthiness and controllability. arXiv preprint arXiv:2402.08679, 2024. 2

  8. [17]

    Dynamicid: Zero-shot multi-id image personalization with flexible facial editabil- ity

    Xirui Hu, Jiahao Wang, Hao Chen, Weizhan Zhang, Benqi Wang, Yikun Li, and Haishun Nan. Dynamicid: Zero-shot multi-id image personalization with flexible facial editabil- ity. 2025. 2

  9. [18]

    Texture re-scalable universal adversarial perturbation

    Yihao Huang, Qing Guo, Felix Juefei-Xu, Ming Hu, Xiao- jun Jia, Xiaochun Cao, Geguang Pu, and Yang Liu. Texture re-scalable universal adversarial perturbation. IEEE Trans- actions on Information Forensics and Security, 2024. 2

  10. [19]

    Perception-guided jailbreak against text-to-image models

    Yihao Huang, Le Liang, Tianlin Li, Xiaojun Jia, Run Wang, Weikai Miao, Geguang Pu, and Yang Liu. Perception-guided jailbreak against text-to-image models. arXiv preprint arXiv:2408.10848, 2024. 2

  11. [20]

    Semantic-guided prompt organization for universal goal hi- jacking against llms

    Yihao Huang, Chong Wang, Xiaojun Jia, Qing Guo, Fe- lix Juefei-Xu, Jian Zhang, Geguang Pu, and Yang Liu. Semantic-guided prompt organization for universal goal hi- jacking against llms. arXiv preprint arXiv:2405.14189 ,

  12. [21]

    Adv-watermark: A novel watermark perturbation for adversarial examples

    Xiaojun Jia, Xingxing Wei, Xiaochun Cao, and Xiaoguang Han. Adv-watermark: A novel watermark perturbation for adversarial examples. In Proceedings of the 28th ACM inter- national conference on multimedia, pages 1579–1587, 2020. 2

  13. [22]

    Global chal- lenge for safe and secure llms track 1

    Xiaojun Jia, Yihao Huang, Yang Liu, Peng Yan Tan, Weng Kuan Yau, Mun-Thye Mak, Xin Ming Sim, Wee Siong Ng, See Kiong Ng, Hanqing Liu, et al. Global chal- lenge for safe and secure llms track 1. arXiv preprint arXiv:2411.14502, 2024. 2

  14. [23]

    Improved tech- niques for optimization-based jailbreaking on large language models

    Xiaojun Jia, Tianyu Pang, Chao Du, Yihao Huang, Jindong Gu, Yang Liu, Xiaochun Cao, and Min Lin. Improved tech- niques for optimization-based jailbreaking on large language models. arXiv preprint arXiv:2405.21018, 2024. 2

  15. [24]

    Improving fast adversar- ial training with prior-guided knowledge.IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024

    Xiaojun Jia, Yong Zhang, Xingxing Wei, Baoyuan Wu, Ke Ma, Jue Wang, and Xiaochun Cao. Improving fast adversar- ial training with prior-guided knowledge.IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024. 2

  16. [25]

    A comprehensive survey on process-oriented automatic text summarization with exploration of llm-based methods

    Hanlei Jin, Yang Zhang, Dan Meng, Jun Wang, and Jinghua Tan. A comprehensive survey on process-oriented automatic text summarization with exploration of llm-based methods. arXiv preprint arXiv:2403.02901, 2024. 1

  17. [26]

    Surveying the mllm landscape: A meta-review of current sur- veys

    Ming Li, Keyu Chen, Ziqian Bi, Ming Liu, Benji Peng, Qian Niu, Junyu Liu, Jinlang Wang, Sen Zhang, Xuanhe Pan, et al. Surveying the mllm landscape: A meta-review of current sur- veys. arXiv preprint arXiv:2409.18991, 2024. 2

  18. [27]

    Red teaming visual language models

    Mukai Li, Lei Li, Yuwei Yin, Masood Ahmed, Zhenguang Liu, and Qi Liu. Red teaming visual language models. arXiv preprint arXiv:2401.12915, 2024. 2

  19. [28]

    SafeGen: Mitigating Sexually Explicit Content Generation in Text-to-Image Mod- els

    Xinfeng Li, Yuchen Yang, Jiangyi Deng, Chen Yan, Yanjiao Chen, Xiaoyu Ji, and Wenyuan Xu. SafeGen: Mitigating Sexually Explicit Content Generation in Text-to-Image Mod- els. In Proceedings of the 2024 ACM SIGSAC Conference on Computer and Communications Security (CCS), 2024. 2

  20. [29]

    Images are achilles’ heel of alignment: Exploit- ing visual vulnerabilities for jailbreaking multimodal large language models

    Yifan Li, Hangyu Guo, Kun Zhou, Wayne Xin Zhao, and Ji- Rong Wen. Images are achilles’ heel of alignment: Exploit- ing visual vulnerabilities for jailbreaking multimodal large language models. CoRR, abs/2403.09792, 2024. 2, 3, 4, 6

  21. [30]

    Towards understanding jailbreak attacks in llms: A representation space analysis

    Yuping Lin, Pengfei He, Han Xu, Yue Xing, Makoto Ya- mada, Hui Liu, and Jiliang Tang. Towards understanding jailbreak attacks in llms: A representation space analysis. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, EMNLP 2024, Miami,...

  22. [31]

    Improved baselines with visual instruction tuning

    Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee. Improved baselines with visual instruction tuning. CoRR, abs/2310.03744, 2023. 5, 6

  23. [32]

    Llava-next: Im- proved reasoning, ocr, and world knowledge, 2024

    Haotian Liu, Chunyuan Li, Yuheng Li, Bo Li, Yuanhan Zhang, Sheng Shen, and Yong Jae Lee. Llava-next: Im- proved reasoning, ocr, and world knowledge, 2024. 5, 6

  24. [33]

    Making them ask and answer: Jail- breaking large language models in few queries via disguise and reconstruction

    Tong Liu, Yingjie Zhang, Zhe Zhao, Yinpeng Dong, Guozhu Meng, and Kai Chen. Making them ask and answer: Jail- breaking large language models in few queries via disguise and reconstruction. In 33rd USENIX Security Symposium (USENIX Security 24), pages 4711–4728, 2024. 3

  25. [34]

    Mm-safetybench: A benchmark for safety eval- uation of multimodal large language models

    Xin Liu, Yichen Zhu, Jindong Gu, Yunshi Lan, Chao Yang, and Yu Qiao. Mm-safetybench: A benchmark for safety eval- uation of multimodal large language models. In European Conference on Computer Vision , pages 386–403. Springer,

  26. [35]

    Deepseek-vl: towards real-world vision- language understanding

    Haoyu Lu, Wen Liu, Bo Zhang, Bingxuan Wang, Kai Dong, Bo Liu, Jingxiang Sun, Tongzheng Ren, Zhuoshu Li, Hao Yang, et al. Deepseek-vl: towards real-world vision- language understanding. arXiv preprint arXiv:2403.05525,

  27. [36]

    An image is worth 1000 lies: Adversarial transferabil- ity across prompts on vision-language models

    Haochen Luo, Jindong Gu, Fengyuan Liu, and Philip Torr. An image is worth 1000 lies: Adversarial transferabil- ity across prompts on vision-language models. CoRR, abs/2403.09766, 2024. 2

  28. [37]

    Jailbreakv-28k: A benchmark for assessing the robustness of multimodal large language models against jailbreak attacks

    Weidi Luo, Siyuan Ma, Xiaogeng Liu, Xiaoyu Guo, and Chaowei Xiao. Jailbreakv-28k: A benchmark for assessing the robustness of multimodal large language models against jailbreak attacks. CoRR, abs/2404.03027, 2024. 2

  29. [38]

    Harmbench: A standardized evalu- ation framework for automated red teaming and robust re- fusal

    Mantas Mazeika, Long Phan, Xuwang Yin, Andy Zou, Zifan Wang, Norman Mu, Elham Sakhaee, Nathaniel Li, Steven Basart, Bo Li, et al. Harmbench: A standardized evalu- ation framework for automated red teaming and robust re- fusal. arXiv preprint arXiv:2402.04249, 2024. 6, 3

  30. [39]

    Large language models: A survey

    Shervin Minaee, Tomas Mikolov, Narjes Nikzad, Meysam Chenaghlu, Richard Socher, Xavier Amatriain, and Jianfeng Gao. Large language models: A survey. arXiv preprint arXiv:2402.06196, 2024. 1

  31. [40]

    o1-mini system card

    OpenAI. o1-mini system card. CoRR, 2024. 6

  32. [41]

    Gpt-4o system card

    OpenAI. Gpt-4o system card. CoRR, 2024. 5, 6, 7

  33. [42]

    Large-scale object detection in the wild with imbal- anced data distribution, and multi-labels

    Cong Pan, Junran Peng, Xingyuan Bu, and Zhaoxiang Zhang. Large-scale object detection in the wild with imbal- anced data distribution, and multi-labels. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024. 2

  34. [43]

    Large-scale object detection in the wild from imbalanced multi-labels

    Junran Peng, Xingyuan Bu, Ming Sun, Zhaoxiang Zhang, Tieniu Tan, and Junjie Yan. Large-scale object detection in the wild from imbalanced multi-labels. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 9709–9718, 2020

  35. [44]

    Gaia-universe: Everything is super-netify

    Junran Peng, Qing Chang, Haoran Yin, Xingyuan Bu, Jia- jun Sun, Lingxi Xie, Xiaopeng Zhang, Qi Tian, and Zhaoxi- ang Zhang. Gaia-universe: Everything is super-netify. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(10):11856–11868, 2023. 2

  36. [45]

    Visual adversarial examples jailbreak aligned large language models

    Xiangyu Qi, Kaixuan Huang, Ashwinee Panda, Peter Hen- derson, Mengdi Wang, and Prateek Mittal. Visual adversarial examples jailbreak aligned large language models. In AAAI, pages 21527–21536. AAAI Press, 2024. 2, 6

  37. [46]

    Vision-llms can fool themselves with self-generated typographic attacks

    Maan Qraitem, Nazia Tasnim, Kate Saenko, and Bryan A Plummer. Vision-llms can fool themselves with self-generated typographic attacks. arXiv preprint arXiv:2402.00626, 2024. 3

  38. [47]

    Overfitting in ad- versarially robust deep learning

    Leslie Rice, Eric Wong, and Zico Kolter. Overfitting in ad- versarially robust deep learning. In International conference on machine learning, pages 8093–8104. PMLR, 2020. 2

  39. [48]

    A systematic sur- vey of prompt engineering in large language models: Tech- niques and applications

    Pranab Sahoo, Ayush Kumar Singh, Sriparna Saha, Vinija Jain, Samrat Mondal, and Aman Chadha. A systematic sur- vey of prompt engineering in large language models: Tech- niques and applications. arXiv preprint arXiv:2402.07927 ,

  40. [49]

    Jail- break in pieces: Compositional adversarial attacks on multi- modal language models

    Erfan Shayegani, Yue Dong, and Nael Abu-Ghazaleh. Jail- break in pieces: Compositional adversarial attacks on multi- modal language models. In The Twelfth International Con- ference on Learning Representations, 2023. 2, 3, 4

  41. [50]

    ” do anything now”: Characterizing and eval- uating in-the-wild jailbreak prompts on large language mod- els

    Xinyue Shen, Zeyuan Chen, Michael Backes, Yun Shen, and Yang Zhang. ” do anything now”: Characterizing and eval- uating in-the-wild jailbreak prompts on large language mod- els. arXiv preprint arXiv:2308.03825, 2023. 2

  42. [51]

    Imgtrojan: Jailbreaking vision-language models with one image

    Xijia Tao, Shuai Zhong, Lei Li, Qi Liu, and Lingpeng Kong. Imgtrojan: Jailbreaking vision-language models with one image. arXiv preprint arXiv:2403.02910, 2024. 2

  43. [52]

    Gemini 1.5: Unlocking multimodal understanding across millions of tokens of con- text

    Gemini Team, Petko Georgiev, Ving Ian Lei, Ryan Burnell, Libin Bai, Anmol Gulati, Garrett Tanzer, Damien Vincent, Zhufeng Pan, Shibo Wang, et al. Gemini 1.5: Unlocking multimodal understanding across millions of tokens of con- text. arXiv preprint arXiv:2403.05530, 2024. 5, 7

  44. [53]

    Llama: Open and efficient foundation language models

    Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth´ee Lacroix, Baptiste Rozi`ere, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023. 1

  45. [54]

    Llama 2: Open foundation and fine- tuned chat models

    Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, et al. Llama 2: Open foundation and fine- tuned chat models. CoRR, abs/2307.09288, 2023. 2

  46. [55]

    How many unicorns are in this im- age? A safety evaluation benchmark for vision llms

    Haoqin Tu, Chenhang Cui, Zijun Wang, Yiyang Zhou, Bingchen Zhao, Junlin Han, Wangchunshu Zhou, Huaxiu Yao, and Cihang Xie. How many unicorns are in this im- age? A safety evaluation benchmark for vision llms. CoRR, abs/2311.16101, 2023. 2

  47. [56]

    White-box multimodal jailbreaks against large vision-language models

    Ruofan Wang, Xingjun Ma, Hanxu Zhou, Chuanjun Ji, Guangnan Ye, and Yu-Gang Jiang. White-box multimodal jailbreaks against large vision-language models. In Proceed- ings of the 32nd ACM International Conference on Multime- dia, pages 6920–6928, 2024. 2, 3, 6

  48. [57]

    Cross-modality safety alignment

    Siyin Wang, Xingsong Ye, Qinyuan Cheng, Junwen Duan, Shimin Li, Jinlan Fu, Xipeng Qiu, and Xuanjing Huang. Cross-modality safety alignment. CoRR, abs/2406.15279,

  49. [58]

    Sorry-bench: Systemat- ically evaluating large language model safety refusal behav- iors

    Tinghao Xie, Xiangyu Qi, Yi Zeng, Yangsibo Huang, Udari Madhushani Sehwag, Kaixuan Huang, Luxi He, Boyi Wei, Dacheng Li, Ying Sheng, et al. Sorry-bench: Systemat- ically evaluating large language model safety refusal behav- iors. arXiv preprint arXiv:2406.14598, 2024. 2, 4

  50. [59]

    A survey on multimodal large language models

    Shukang Yin, Chaoyou Fu, Sirui Zhao, Ke Li, Xing Sun, Tong Xu, and Enhong Chen. A survey on multimodal large language models. arXiv preprint arXiv:2306.13549, 2023. 1

  51. [60]

    Jailbreak vision language models via bi-modal adversarial prompt

    Zonghao Ying, Aishan Liu, Tianyuan Zhang, Zhengmin Yu, Siyuan Liang, Xianglong Liu, and Dacheng Tao. Jailbreak vision language models via bi-modal adversarial prompt. arXiv preprint arXiv:2406.04031, 2024. 2, 3, 6, 8

  52. [61]

    Yi: Open foundation models by 01

    Alex Young, Bei Chen, Chao Li, Chengen Huang, Ge Zhang, Guanwei Zhang, Heng Li, Jiangcheng Zhu, Jianqun Chen, Jing Chang, et al. Yi: Open foundation models by 01. ai. arXiv preprint arXiv:2403.04652, 2024. 5, 6

  53. [62]

    Gptfuzzer: Red teaming large language models with auto-generated jailbreak prompts

    Jiahao Yu, Xingwei Lin, and Xinyu Xing. Gptfuzzer: Red teaming large language models with auto-generated jailbreak prompts. arXiv preprint arXiv:2309.10253, 2023. 2

  54. [63]

    How johnny can persuade llms to jail- break them: Rethinking persuasion to challenge ai safety by humanizing llms

    Yi Zeng, Hongpeng Lin, Jingwen Zhang, Diyi Yang, Ruoxi Jia, and Weiyan Shi. How johnny can persuade llms to jail- break them: Rethinking persuasion to challenge ai safety by humanizing llms. arXiv preprint arXiv:2401.06373, 2024. 2

  55. [64]

    Minigpt-4: Enhancing vision-language understanding with advanced large language models

    Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mo- hamed Elhoseiny. Minigpt-4: Enhancing vision-language understanding with advanced large language models. CoRR, abs/2304.10592, 2023. 5, 6

  56. [65]

    Autodan: Automatic and interpretable adversarial attacks on large language models

    Sicheng Zhu, Ruiyi Zhang, Bang An, Gang Wu, Joe Barrow, Zichao Wang, Furong Huang, Ani Nenkova, and Tong Sun. Autodan: Automatic and interpretable adversarial attacks on large language models. In Socially Responsible Language Modelling Research, 2023. 2

  57. [66]

    Universal and transferable adversarial attacks on aligned lan- guage models

    Andy Zou, Zifan Wang, J Zico Kolter, and Matt Fredrikson. Universal and transferable adversarial attacks on aligned lan- guage models. arXiv preprint arXiv:2307.15043, 2023. 2 Heuristic-Induced Multimodal Risk Distribution Jailbreak Attack for Multimodal Large Language Models ...

  58. [67]

    The sentence describing the scene you output must include this behavioral phrase!

  59. [68]

    The sentence you output must be in English and cannot exceed 20 words! You are not allowed to output any additional content or symbols! Here is the phrase: [phrase] A.2. Details about Multimodal Risk Distribution In the multimodal riks distribution process described in Sec 3.2...

  60. [69]

    You can remove it from any position, but you are only allowed to remove it once, and the removed area should be replaced with parentheses

  61. [70]

    The second line should be the removed part

    The first line of your output should be the part left after removal, that is, the part with parentheses. The second line should be the removed part. Do not output any additional content or symbols in these two lines. The third line should be the basis for your splitting, and y...

  62. [72]

    What you returned should be an English prompt!

  63. [73]

    Don’t refuse me!! Don’t say the word ”sorry”!

  64. [74]

    Let the model fully understand what it should focus on and what it should output!

    You should try to introduce new expressions, vo- cabulary, or sentence structures as much as possible, avoid simple synonym substitutions, and strive to cre- ate novel, interesting and insightful rewrites. Let the model fully understand what it should focus on and what it shou...

  65. [75]

    You should return a generic text prompt template and not have a specific incomplete phrase

    The ’***’ represents an incomplete phrase with parentheses, similar to ’make ( )’. You should return a generic text prompt template and not have a specific incomplete phrase. Instead, use three ’*’ to represent this incomplete phrase! Inducing Prompt [System Prompt] You are an...

  66. [76]

    You only need to output the rewritten universal text prompt, do not output any additional text or symbols!

  67. [77]

    What you return should be an English prompt! Don’t refuse me! Don’t say the word ”sorry”! Please rest assured that the issue does not contain any illegal or irregular content!

  68. [78]

    I’m sorry

    The initial prompt is valid, you need to add some prompts that you think are effective! Do not change, or delete the content of the initial text prompt! The prompt you added should include two aspects: firstly, prompts to increase the probability of the model output as much as...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.