The LMVD-ID is an internal research identifier, not an official CVE identifier.
Adversarial Vision Degrades VLM
Large Language and Vision Assistant (LLaVA) v1.5-13B and Meta Llama 3.2 11B Vision are vulnerable to adversarial evasion attacks targeting the visual input modality. An attacker with white-box access (knowledge of…
Paper-evaluated models(2)
- LLaVA 1.5 13B
- Llama 3.2 11B Vision
Description
Large Language and Vision Assistant (LLaVA) v1.5-13B and Meta Llama 3.2 11B Vision are vulnerable to adversarial evasion attacks targeting the visual input modality. An attacker with white-box access (knowledge of model architecture and gradients) can employ Projected Gradient Descent (PGD) to generate adversarial perturbations constrained by an L-infinity norm. By maximizing the model's internal loss function with respect to the input image, the attacker can force the Vision-Language Model (VLM) to generate incorrect, irrelevant, or nonsensical textual outputs for Visual Question Answering (VQA) tasks, effectively bypassing the model's visual understanding capabilities while leaving the text prompt benign.
Examples
To reproduce the vulnerability, an attacker implements an iterative PGD attack. The adversarial image $x^{t+1}$ is generated using the following update rule targeting the model's loss function $J$:
$$x^{t+1} = \Pi_{\mathcal{B}{\epsilon}(x)} \left( x^t + \alpha \cdot \text{sign}(\nabla{x^t} J(\theta, x^t, q)) \right)$$
Configuration parameters utilized to demonstrate the exploit:
- Attack Algorithm: Untargeted PGD (Projected Gradient Descent).
- Perturbation Budget ($\epsilon$): Ranges from 2/255 (imperceptible) to 255/255 (maximum).
- Step Size ($\alpha$): Scaled proportionally to $\epsilon$ (e.g., $\alpha=0.00196$ for $\epsilon=2/255$).
- Iterations: 5 to 30 steps depending on budget.
- Target:
pgd_utils.pyimplementation targeting the visual encoder (CLIP ViT-L/14 for LLaVA, ViT-H/14 for Llama 3.2).
See arXiv:2310.03744 (opens in a new tab) (LLaVA) and relevant repositories for standard PGD implementations on VLMs. See the primary evaluation, Adversarial Robustness of Vision in Open Foundation Models (opens in a new tab), for the tested models and results.
Impact
- Integrity Compromise: The model provides incorrect answers to visual queries, hallucinating content or failing to recognize objects present in the image.
- Accuracy Degradation:
- LLaVA-1.5-13B: Suffers a VQA accuracy drop of up to 36.0 percentage points under maximum perturbation.
- Llama 3.2 11B Vision: Suffers a VQA accuracy drop of up to 10.4 percentage points.
- Downstream Manipulation: Applications relying on these models for image description, automated moderation, or accessibility tools can be deceived into misinterpreting visual context without manipulating the text prompt.
Affected Systems
- LLaVA-1.5-13B (Hugging Face identifier:
llava-hf/llava-1.5-13b-hf) - Meta Llama 3.2 11B Vision (Hugging Face identifier:
meta-llama/Llama-3.2-11B-Vision)
Mitigation Steps
- Adversarial Training: Fine-tune models using adversarial examples generated via PGD during the training phase to robustify the visual encoder and alignment layers.
- Input Sanitization: Restrict the visual input channel in high-stakes environments or implementing pre-processing steps (e.g., JPEG compression, randomization) to disrupt specific adversarial perturbations, though this may degrade standard performance.
- Architectural Hardening: Utilization of cross-attention adapter mechanisms (as seen in Llama 3.2) rather than simple projection layers (LLaVA) correlates with higher relative stability against increasing perturbation magnitudes, though it does not eliminate the vulnerability.
Research context and confidence
- Evidence and verification
- Paper-reported; independent reproduction is not documented.
- Primary research source linked.
- Severity
- Not rated by this catalog.
- Source and publication type
- arXiv · Research preprint.
- Peer-review status is not provided by this source.
- Author and publication status
- Author metadata is not stored; see the primary paper.
- Threat model and attacker access
- White-box access to model or deployment internals.
- Related deployment categories
- Vision-language models
- Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
- Affected systems
- LLaVA-1.5-13B (Hugging Face identifier: llava-hf/llava-1.5-13b-hf) Meta Llama 3.2 11B Vision (Hugging Face identifier: meta-llama/Llama-3.2-11B-Vision)
Research Paper
Adversarial Robustness of Vision in Open Foundation Models
Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.
View PaperEvidence
This entry is based on a primary research source. Its findings are paper-reported; independent reproduction and verification are not claimed.
https://arxiv.org/abs/2512.17902Related research
- VLM E-commerce Attack Surface
Published March 1, 2026 · model-layer, vision, multimodal
- X-Shaped Sparse VLM Attack
Published March 1, 2026 · model-layer, vision, multimodal
- Discrete Token Subversion
Published February 1, 2026 · model-layer, jailbreak, vision