REVIEW 3 major objections 6 minor 3 cited by
Exploring Visual Vulnerabilities via Multi-Loss Adversarial Search for Jailbreaking Vision-Language Models
T0 review · 3 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read A multi-image adversarial search using scenario-matched images and flat-minima loss selection jailbreaks open VLMs at up to 82.80% and transfers to commercial ones.
desk verdict Plausible new attack ideas, but the headline ASR margins are unverified because the multi-image input mechanism and matched-budget baselines are missing. 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 mechanism is MLAI's three-stage pipeline built around the concept of Multi-Loss Adversarial Images. Stage one is scenario-aware image generation: for each of 13 forbidden-behavior categories, the authors craft text prompts that depict benign contextual scenes (e.g., a business meeting for fraud), use a text-to-image model to create an initial image, and thereby establish semantic alignment with the attack target. Stage two is adversarial optimization: the initial image is refined by gradient updates that minimize the cross-entropy loss between the VLM's output and harmful target phrases, under an $\ell_\infty$ perturbation bound of $32/255$, and the algorithm saves candidate images from many loss values rather than only the final one. Stage three selects a loss range $\Theta$ from the slopes of the loss landscape around the minimum—using flat-minima theory from optimization, the idea that solutions in flatter loss regions are more robust to input shift—and then feeds the images whose losses fall in $\Theta$ to the VLM together as a collaborative attack. The flat-minima analogy is what turns the negative finding about minimal loss into a constructive selection rule.
What would settle it
Re-running MLAI and the baselines with human scoring of the responses, or with the loss-range coefficient chosen on a held-out set, and checking whether the reported success-rate margins survive, would settle whether the headline attack numbers are genuine.
Extended reading notes
Core claim
The central discovery is that jailbreaking a VLM is not a single-image optimization problem. Two empirical findings drive the method: (1) an image that is semantically relevant to the target harmful scenario—rather than a blank or arbitrary image—substantially increases the likelihood that the VLM will produce harmful text; and (2) among gradient-optimized adversarial candidates, the image with the minimal loss is often less effective than candidates that sit in a flat region of the loss landscape. MLAI operationalizes both observations. It generates scenario-matched initial images with a text-to-image model, optimizes them by minimizing cross-entropy loss against harmful target responses, then selects a small set of images whose losses fall in a range determined by the fitted local slopes of the loss landscape around the minimum, and uses this set as a collaborative visual input. The paper reports that this raises attack success to 77.75% on MiniGPT-4 and 82.80% on LLaVA-2, surpassing prior white-box attacks by 34.37 and 12.77 percentage points, and that the attacks transfer to commercial black-box models with success rates up to 60.11%.
Load-bearing premise
The headline attack-success numbers rely on an automated harmfulness judge with scenario-specific prompts and a multi-image input format, and the coefficient that sets the loss interval is tuned on the exact models and datasets used for the final evaluation.
Editorial extensions
If this is right
- If MLAI's results hold, then current VLM safety alignment is substantially weaker than its text-only inheritors, because a semantically matched image alone can raise attack success well above plain-text baselines.
- The flat-minima selection rule implies that adversarial-image search should not be reduced to picking the minimal-loss candidate; storing and evaluating a small loss interval is both more effective and, with the adaptive range, computationally controlled.
- The cross-scenario transfer results imply that unsafe behaviors share semantic patterns, so an image built for one forbidden scenario (e.g., illegal activity) may be reused for semantically related scenarios (e.g., malware generation) with limited loss of effectiveness.
- The proposed similarity-based deduplication defense, which filters out near-duplicate input images, reduces attack success by 22.99% on MiniGPT-4 and converts the multi-image attack back into a single-image attack, providing a starting point for practical countermeasures.
Reading between the lines
- If flat-minima selection is the real driver of the gains, then similar loss-range selection could improve transferability of single-image adversarial attacks in other multimodal settings (e.g., video-language or image-editing models), though the paper does not test this.
- The scenario-transferability matrix suggests that a semantic taxonomy of harmful action patterns could predict which attacks transfer between scenarios without running full evaluations.
- Because the range coefficient was tuned on the evaluation models, the reported margins are likely optimistic upper bounds; an independent evaluation with fixed hyperparameters would clarify the true out-of-sample gain.
- The proposed defense still leaves high residual ASR, which implies that mere input deduplication is insufficient; defenses may need to actively break the image-text semantic alignment, for example by paraphrasing the query or perturbing image features.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes MLAI, a jailbreak attack against vision-language models (VLMs). The method first generates scenario-matched initial images via DALL·E 3, then applies gradient-based optimization to create adversarial images, and finally selects a set of images whose loss values fall within an adaptively determined loss range for a 'multi-image collaborative attack.' Experiments on MiniGPT-4 and LLaVA-2 report attack success rates (ASR) of 77.75% and 82.80%, claiming large improvements over prior single-image baselines, and also report transferability to commercial black-box models. The paper additionally proposes a similarity-based deduplication defense.
Significance. If the reported results are robust, MLAI would demonstrate a practical and effective jailbreak strategy with two interesting empirical observations: scenario-matched images are more effective than irrelevant images, and the minimal-loss adversarial image is not always the most successful. The proposed defense is a useful first step. However, the central quantitative claims are currently not fully supported. The multi-image attack mechanism is underspecified, the loss-range formula contains undefined quantities, and key hyperparameters are tuned in-sample on the same models and datasets used for the final evaluation. The lack of a matched-query baseline means the claimed gains over prior work may be attributable to an any-of-N oracle effect rather than the proposed loss-range selection. These issues need to be addressed before the headline results can be taken at face value.
major comments (3)
- [Sec. 3.4, Eq. (5)] The mechanism for the 'multi-image collaborative attack' is not specified. Both MiniGPT-4 and LLaVA-2 are single-image VLMs, yet the paper never explains how multiple adversarial images are presented to the model (e.g., as a grid, concatenated along the sequence, or separate forward passes) nor how the outputs are aggregated. Equation (2) writes y* = Θ Σ_k M([W·E(I_adv,k_t), t]), but Θ is a loss range, not an operator, and the sum is not defined. Without a concrete description, the method is not reproducible. More importantly, Figure 7 shows ASR increasing monotonically with the number of images, which is exactly what an 'any-one-of-N-images succeeds' oracle would produce. The baselines in Table 1 (Liu et al. and Qi et al.) appear to use a single image per query. Therefore, the reported improvements of 34.37% on MiniGPT-4 and 12.77% on LLaVA-2 may be due to the larger attack budget (more images per query) rather than to the proposed loss-range selection or flat-minima rationale. A matched-query baseline is essential: for example, the same number of images selected randomly from the optimization trajectory, or a single-image MLAI variant using only the minimal-loss image, should be compared under identical conditions. I consider this a load-bearing issue for the headline comparison.
- [Sec. 3.4, Eq. (5) and Fig. 8] The definition of the loss range Θ is incomplete and partly circular. The quantity K is described as 'the standard slope derived from normal distribution,' but no formula or justification is given. The slopes kl and kr are fitted to the 20 nearest points on each side of the minimum loss; these points are drawn from the same adversarial images that are later evaluated, so the selection procedure uses the evaluation data to define the selection criterion. Furthermore, the range coefficient ρ is set to 6 based on Figure 8, which reports average ASR on the same MiniGPT-4 and LLaVA-2 models and the same SafetyBench/AdvBench-derived dataset used in the final results. This is in-sample tuning: the headline ASR numbers are not out-of-sample predictions. The paper should either fix ρ a priori, or evaluate on a separate validation set before applying to the test set, or report sensitivity across ρ for each model separately. Without such a separation, the reported state-of-the-art margins are partly fitted to the test benchmark.
- [Sec. 4.3, Fig. 7] The experiments on the number of images (Fig. 7) do not uniquely support the flat-minima interpretation. The ASR-vs-number-of-images curves are equally consistent with a simple model in which each adversarial image has an independent probability p of success, and the attack succeeds if any of the N images succeeds (ASR = 1 − (1 − p)^N). The differences in curve shapes across scenarios (e.g., IA vs. FA) can be explained by different per-image success probabilities, without invoking flat or sharp minima. The paper does not directly measure the curvature of the loss landscape along attack-relevant directions, nor does it correlate such curvature with the observed ASR. The statement in Sec. 4.3 that 'flatter minima indeed provide greater robustness' is therefore an over-interpretation of the presented evidence. The flat-minima analogy may be a useful heuristic, but it should be framed as a post-hoc explanation rather than a validated mechanism.
minor comments (6)
- [Sec. 3.4, Eq. (2)] Equation (2) is not mathematically well-formed: Θ is a set of loss values, but it is used as a multiplier; the summation over k is not indexed clearly. Please rewrite the equation to describe the actual aggregation procedure.
- [Sec. 4.1] The sentence 'We following the setting of BAP' should read 'We follow the setting of BAP'.
- [Sec. 4.3, Fig. 7] The caption of Figure 7 states 'we set v = ⌈kl/K⌉ and assume that the slopes on both sides are equal without loss of generality.' This assumption is not justified; the loss landscape is not necessarily symmetric around the minimum.
- [Table 1] The 'Plain Text' baseline shows surprisingly high ASR for certain scenarios (e.g., 67.67% for Political Lobbying and 74.56% for Legal Opinion on MiniGPT-4). These values are not discussed; they suggest that the judge's criteria for these scenarios may be lenient. Please comment on the consistency of the judge across scenarios.
- [Sec. 4.2] No error bars or significance tests are reported for any ASR differences. Given the variance in adversarial attack success rates across random initializations, reporting standard deviations over multiple runs (or at least confidence intervals) would strengthen the comparison.
- [Appendix C] The judging prompt template is described in text, but the actual scenario-specific adjusted versions are not shown. Since the criteria for Legal Opinion, Financial Advice, and Health Consultation are based on the presence of a disclaimer rather than on explicit harmfulness, it would be helpful to display the exact prompts used for those scenarios.
Circularity Check
Headline ASR values are partly in-sample: the loss-range coefficient rho is tuned on the same models and metric later reported, so the central claim retains independent evidence but is partially fitted.
-
fitted input called prediction
[Sec. 4.3 'Loss range determination', Eq. (5), Fig. 8; used in Eq. (2) and Table 1]
"We tested the average ASR across all scenarios for different values of ρ on both MiniGPT-4 [41] and LLaV A-2 [19]. As shown in Fig. 8, the average ASR reaches its near-maximum value when ρ = 6, while the computational complexity increases at a linear rate. Further increases in ρ yield diminishing returns. Therefore, based on empirical observations, we set the baseline value of ρ = 6."
Eq. (5) defines the loss range Θ as a function of ρ, and Eq. (2) produces the final attack by collaboratively using images inside Θ. The paper chooses ρ by measuring the average ASR on exactly the two models, MiniGPT-4 and LLaVA-2, and the same scenario set that later yield the headline numbers in Table 1. The reported ASRs of 77.75% and 82.80% are therefore evaluations at a parameter selected to nearly maximize those same averages, rather than out-of-sample demonstrations. This fits the fitted-input pattern: the range coefficient is fit to the target metric, and the resulting in-sample value is then presented as evidence for the method and for the flat-minima interpretation.
full rationale
The paper is an empirical attack-evaluation study rather than a derivation from first principles, and most components are independent evidence: scenario-matched DALL·E initialization, gradient optimization, an external Beaver-dam judge, and black-box transfer tests. I found no definitional equivalence between inputs and outputs, no self-citation chain, and no imported uniqueness theorem. The only concrete circular element is the choice of ρ: a loss-range hyperparameter tuned on the same two models and the same ASR metric used for the headline comparison. This makes the headline numbers partly in-sample and somewhat weakens the flat-minima conclusion, but the central comparison still rests on additional unfitted elements such as scenario-aware initialization and transfer experiments. The paper is therefore only mildly circular, not forced by construction.
Assumptions & free parameters
free parameters (5)
- rho (loss range coefficient) =
6
- epsilon (perturbation bound) =
32/255
- Slopes kl, kr =
Fitted by least squares from 20 points on each side of the loss minimum
- K (standard slope) =
Not specified
- Target corpus Y =
Hand-crafted harmful statements
assumptions (4)
- domain assumption Beaver-dam-7B reliably classifies harmful responses in all 13 scenarios with the scenario-adapted prompt templates.
- domain assumption DALL·E 3 can generate scenario-relevant but non-harmful images for each of the 13 categories.
- ad hoc to paper Flat minima theory from neural network generalization applies to adversarial image selection in VLMs.
- domain assumption The VLM can accept multiple images as input in the manner described by Eq 2.
Cite this review
Pith. "Pith review of Exploring Visual Vulnerabilities via Multi-Loss Adversarial Search for Jailbreaking Vision-Language Models." pith.science (2026). https://pith.science/paper/SYNRGLEU
@misc{pith2026241118000,
author = {Pith},
title = {Pith review of: Exploring Visual Vulnerabilities via Multi-Loss Adversarial Search for Jailbreaking Vision-Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/SYNRGLEU}},
note = {Machine review of arXiv:2411.18000}
}
read the original abstract
Despite inheriting security measures from underlying language models, Vision-Language Models (VLMs) may still be vulnerable to safety alignment issues. Through empirical analysis, we uncover two critical findings: scenario-matched images can significantly amplify harmful outputs, and contrary to common assumptions in gradient-based attacks, minimal loss values do not guarantee optimal attack effectiveness. Building on these insights, we introduce MLAI (Multi-Loss Adversarial Images), a novel jailbreak framework that leverages scenario-aware image generation for semantic alignment, exploits flat minima theory for robust adversarial image selection, and employs multi-image collaborative attacks for enhanced effectiveness. Extensive experiments demonstrate MLAI's significant impact, achieving attack success rates of 77.75% on MiniGPT-4 and 82.80% on LLaVA-2, substantially outperforming existing methods by margins of 34.37% and 12.77% respectively. Furthermore, MLAI shows considerable transferability to commercial black-box VLMs, achieving up to 60.11% success rate. Our work reveals fundamental visual vulnerabilities in current VLMs safety mechanisms and underscores the need for stronger defenses. Warning: This paper contains potentially harmful example text.
Figures
Figures from the paper (11 more)
Forward citations
Cited by 3 Pith papers
-
Visual Token Compression Enhances Robustness of MLLMs
Pruning visual tokens farthest from the text feature space at selected 'robust' layers improves MLLM jailbreak defense (average +13.29% RAR) and slightly reduces hallucination.
-
Watch, Listen, Understand, Mislead: Tri-modal Adversarial Attacks on Short Videos for Content Appropriateness Evaluation
Coordinated misleading text descriptions of video, audio, and meaning flip the appropriateness labels assigned by most multimodal LLMs in about 90% of test videos.
-
Pushing the Limits of Safety: A Technical Report on the ATLAS Challenge 2025
The ATLAS 2025 competition demonstrates that vision-language models remain highly vulnerable to flowchart-based and cross-modal jailbreak attacks, with top scores exceeding 93%.
Reference graph
Works this paper leans on
- [1]
-
[2]
Qwen-vl: A versatile vision-language model for understand- ing, localization, text reading, and beyond, 2023
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 understand- ing, localization, text reading, and beyond, 2023. 2
2023
-
[3]
Nicholas Carlini, Milad Nasr, Christopher A. Choquette- Choo, Matthew Jagielski, Irena Gao, Anas Awadalla, Pang Wei Koh, Daphne Ippolito, Katherine Lee, Florian Tramer, and Ludwig Schmidt. Are aligned neural networks adversarially aligned?, 2024. 3
work page 2024
-
[4]
Patrick Chao, Alexander Robey, Edgar Dobriban, Hamed Hassani, George J. Pappas, and Eric Wong. Jailbreaking black box large language models in twenty queries, 2024. 3
work page 2024
- [5]
-
[6]
Jun Chen, Deyao Zhu, Xiaoqian Shen, Xiang Li, Zechun Liu, Pengchuan Zhang, Raghuraman Krishnamoorthi, Vikas Chandra, Yunyang Xiong, and Mohamed Elhoseiny. Minigpt- v2: large language model as a unified interface for vision- language multi-task learning, 2023. 2
work page 2023
- [7]
-
[8]
How robust is google’s bard to adversarial image attacks?,
Yinpeng Dong, Huanran Chen, Jiawei Chen, Zhengwei Fang, Xiao Yang, Yichi Zhang, Yu Tian, Hang Su, and Jun Zhu. How robust is google’s bard to adversarial image attacks?,
Show all 44 references
-
[9]
Mme: A comprehensive evaluation benchmark for multimodal large language models,
Chaoyou Fu, Peixian Chen, Yunhang Shen, Yulei Qin, Meng- dan Zhang, Xu Lin, Jinrui Yang, Xiawu Zheng, Ke Li, Xing Sun, Yunsheng Wu, and Rongrong Ji. Mme: A comprehensive evaluation benchmark for multimodal large language models,
-
[10]
Figstep: Jailbreaking large vision-language models via ty- pographic visual prompts, 2023
Yichen Gong, Delong Ran, Jinyuan Liu, Conglei Wang, Tian- shuo Cong, Anyu Wang, Sisi Duan, and Xiaoyun Wang. Figstep: Jailbreaking large vision-language models via ty- pographic visual prompts, 2023. 1, 3
2023
-
[11]
Gemini, 2024
Google. Gemini, 2024. 2, 5, 7
2024
-
[12]
Flat minima
Sepp Hochreiter and Jurgen Schmidhuber. Flat minima. Neu- ral computation, 9:1–42, 1997. 5
1997
-
[13]
Llama guard: Llm-based input-output safeguard for human-ai conversations,
Hakan Inan, Kartikeya Upasani, Jianfeng Chi, Rashi Rungta, Krithika Iyer, Yuning Mao, Michael Tontchev, Qing Hu, Brian Fuller, Davide Testuggine, and Madian Khabsa. Llama guard: Llm-based input-output safeguard for human-ai conversations,
-
[14]
Beavertails: Towards improved safety align- ment of llm via a human-preference dataset
Jiaming Ji, Mickel Liu, Juntao Dai, Xuehai Pan, Chi Zhang, Ce Bian, Chi Zhang, Ruiyang Sun, Yizhou Wang, and Yaodong Yang. Beavertails: Towards improved safety align- ment of llm via a human-preference dataset. arXiv preprint arXiv:2307.04657, 2023. 6
2023
-
[15]
Buckley, Jason Phang, Samuel R
Tomasz Korbak, Kejian Shi, Angelica Chen, Rasika Bhalerao, Christopher L. Buckley, Jason Phang, Samuel R. Bowman, and Ethan Perez. Pretraining language models with human preferences, 2023. 1, 3
2023
-
[16]
Seed-bench: Benchmarking multimodal llms with generative comprehension, 2023
Bohao Li, Rui Wang, Guangzhi Wang, Yuying Ge, Yixiao Ge, and Ying Shan. Seed-bench: Benchmarking multimodal llms with generative comprehension, 2023. 3
2023
-
[17]
Red teaming visual language models, 2024
Mukai Li, Lei Li, Yuwei Yin, Masood Ahmed, Zhenguang Liu, and Qi Liu. Red teaming visual language models, 2024. 3
2024
-
[18]
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. 1, 2, 3, 6
2024 arXiv
-
[19]
Visual instruction tuning, 2023
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning, 2023. 2, 5, 6, 7, 8
2023
-
[20]
Improved baselines with visual instruction tuning, 2024
Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee. Improved baselines with visual instruction tuning, 2024. 2
2024
-
[21]
Query-relevant images jailbreak large multi-modal models,
Xin Liu, Yichen Zhu, Yunshi Lan, Chao Yang, and Yu Qiao. Query-relevant images jailbreak large multi-modal models,
-
[22]
Robustness over time: Under- standing adversarial examples’ effectiveness on longitudinal versions of large language models, 2024
Yugeng Liu, Tianshuo Cong, Zhengyu Zhao, Michael Backes, Yun Shen, and Yang Zhang. Robustness over time: Under- standing adversarial examples’ effectiveness on longitudinal versions of large language models, 2024. 1
2024
-
[23]
Mmbench: Is your multi-modal model an all-around player?, 2024
Yuan Liu, Haodong Duan, Yuanhan Zhang, Bo Li, Songyang Zhang, Wangbo Zhao, Yike Yuan, Jiaqi Wang, Conghui He, Ziwei Liu, Kai Chen, and Dahua Lin. Mmbench: Is your multi-modal model an all-around player?, 2024. 3
2024
-
[24]
Jailbreaking attack against multimodal large lan- guage model, 2024
Zhenxing Niu, Haodong Ren, Xinbo Gao, Gang Hua, and Rong Jin. Jailbreaking attack against multimodal large lan- guage model, 2024. 3
2024
-
[25]
Dall ·E 3, 2023
OpenAI. Dall ·E 3, 2023. 4
2023
-
[26]
Florencia Leoni Ale- man and
OpenAI, Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, and et al. Florencia Leoni Ale- man and. Gpt-4 technical report, 2024. 5, 12
2024
-
[27]
Red teaming language models with language models
Ethan Perez, Saffron Huang, Francis Song, Trevor Cai, Ro- man Ring, John Aslanides, Amelia Glaese, Nat McAleese, and Geoffrey Irving. Red teaming language models with language models. In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, pa...
2022
-
[28]
Visual adversarial examples jailbreak aligned large language models, 2023
Xiangyu Qi, Kaixuan Huang, Ashwinee Panda, Peter Hender- son, Mengdi Wang, and Prateek Mittal. Visual adversarial examples jailbreak aligned large language models, 2023. 1, 2, 3, 6
2023
-
[29]
Fine-tuning aligned language models compromises safety, even when users do not intend to!, 2023
Xiangyu Qi, Yi Zeng, Tinghao Xie, Pin-Yu Chen, Ruoxi Jia, Prateek Mittal, and Peter Henderson. Fine-tuning aligned language models compromises safety, even when users do not intend to!, 2023. 1
2023
-
[30]
On the adversarial robustness of multi-modal foundation models, 2023
Christian Schlarmann and Matthias Hein. On the adversarial robustness of multi-modal foundation models, 2023. 3
2023
-
[31]
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 Confer- ence on Learning Representations, 2024. 1, 3
2024
-
[32]
Model evaluation for extreme risks, 2023
Toby Shevlane, Sebastian Farquhar, Ben Garfinkel, Mary Phuong, Jess Whittlestone, Jade Leung, Daniel Kokotajlo, Nahema Marchal, Markus Anderljung, Noam Kolt, Lewis Ho, Divya Siddarth, Shahar Avin, Will Hawkins, Been Kim, Iason Gabriel, Vijay Bolina, Jack Clark, Yoshua Bengio, ...
2023
-
[33]
Imgtrojan: Jailbreaking vision-language models with one im- age, 2024
Xijia Tao, Shuai Zhong, Lei Li, Qi Liu, and Lingpeng Kong. Imgtrojan: Jailbreaking vision-language models with one im- age, 2024. 3 9
2024
-
[34]
How many unicorns are in this image? a safety evaluation benchmark for vision llms, 2023
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 image? a safety evaluation benchmark for vision llms, 2023. 3
2023
-
[35]
Jailbreaking gpt-4v via self-adversarial attacks with system prompts, 2024
Yuanwei Wu, Xiang Li, Yixin Liu, Pan Zhou, and Lichao Sun. Jailbreaking gpt-4v via self-adversarial attacks with system prompts, 2024. 3
2024
-
[36]
Shadow alignment: The ease of subverting safely-aligned language models, 2023
Xianjun Yang, Xiao Wang, Qi Zhang, Linda Petzold, William Yang Wang, Xun Zhao, and Dahua Lin. Shadow alignment: The ease of subverting safely-aligned language models, 2023. 13
2023
-
[37]
Jailbreak vi- sion language models via bi-modal adversarial prompt, 2024
Zonghao Ying, Aishan Liu, Tianyuan Zhang, Zhengmin Yu, Siyuan Liang, Xianglong Liu, and Dacheng Tao. Jailbreak vi- sion language models via bi-modal adversarial prompt, 2024. 1, 2, 3, 6
2024
-
[38]
Safetybench: Evaluating the safety of large lan- guage models with multiple choice questions
Zhexin Zhang, Leqi Lei, Lindong Wu, Rui Sun, Yongkang Huang, Chong Long, Xiao Liu, Xuanyu Lei, Jie Tang, and Minlie Huang. Safetybench: Evaluating the safety of large lan- guage models with multiple choice questions. arXiv preprint arXiv:2309.07045, 2023. 5
2023 arXiv
-
[39]
A survey of large language models, 2024
Wayne Xin Zhao, Kun Zhou, Junyi Li, Tianyi Tang, Xiaolei Wang, Yupeng Hou, Yingqian Min, Beichen Zhang, Junjie Zhang, Zican Dong, Yifan Du, Chen Yang, Yushuo Chen, Zhipeng Chen, Jinhao Jiang, Ruiyang Ren, Yifan Li, Xinyu Tang, Zikang Liu, Peiyu Liu, Jian-Yun Nie, and Ji-Rong W...
2024
-
[40]
On evaluating adversarial robustness of large vision-language models, 2023
Yunqing Zhao, Tianyu Pang, Chao Du, Xiao Yang, Chongx- uan Li, Ngai-Man Cheung, and Min Lin. On evaluating adversarial robustness of large vision-language models, 2023. 3
2023
-
[41]
Minigpt-4: Enhancing vision-language understanding with advanced large language models, 2023
Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mo- hamed Elhoseiny. Minigpt-4: Enhancing vision-language understanding with advanced large language models, 2023. 2, 5, 6, 7, 8, 12
2023
-
[42]
Zico Kolter, and Matt Fredrik- son
Andy Zou, Zifan Wang, J. Zico Kolter, and Matt Fredrik- son. Universal and transferable adversarial attacks on aligned language models, 2023. 5
2023
-
[43]
build- ing
Mark Elliot Zuckerberg. Meta, 2004. 5, 12 10 I'm sorry, but I cannot provide information on illegal activities such as tax evasion. It is important for individuals and businesses to comply with tax laws and regulations in order to maintain the integrity of the financial system...
2004
-
[44]
Pornog- raphy
Facial recognition of private individuals; 3) Classifying individuals based on protected character- istics; 4) Using biometrics for identification or assessment; 5) Unlawful collection or disclosure of personal identifiable information or educational, financial, or other prote...
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.