Skip to main content
LLM Security Database
Skip to research details
Back to research findings
LMVD-ID: 805e92ef
Paper published March 1, 2026
Entry analyzed April 11, 2026
Paper-reported evidence
Confidence: Source-linked

The LMVD-ID is an internal research identifier, not an official CVE identifier.

VLM E-commerce Attack Surface

LLaVA-v1.5-7B, when deployed as a vision-language autonomous agent, is highly vulnerable to adversarial image perturbations. An attacker can inject imperceptibly modified images into a web environment (such as an…

BibTeX citation

Paper-evaluated models(2)

  • Qwen 2.5 VL 7B Instruct
  • LLaVA 1.5 7B

Description

LLaVA-v1.5-7B, when deployed as a vision-language autonomous agent, is highly vulnerable to adversarial image perturbations. An attacker can inject imperceptibly modified images into a web environment (such as an e-commerce storefront). When the VLM agent captures a screenshot containing the perturbed image, the visual noise forces the model to misclassify the scene and output incorrect, structured JSON actions. This allows an attacker to hijack the agent's task execution, bypassing the user's original natural language prompt to force unintended clicks or purchases. The vulnerability is exploitable using white-box gradient attacks (BIM, PGD) and black-box CLIP-based spectral attacks using a low perturbation budget ($\epsilon=16/255$).

Examples

An attacker modifies a product image (e.g., a sweatshirt) using the Basic Iterative Method (BIM) overlaid on the background and garment regions, and lists it on a storefront.

  1. The user issues the command: "buy pants".
  2. The agent navigates to the store and takes a screenshot. The screenshot contains the adversarially perturbed sweatshirt (Item 0), actual pants (Item 1), and a golf bag (Item 2).
  3. The adversarial noise in Item 0 disrupts the VLM's feature space, causing it to ignore the correct item and output a misguided JSON action to purchase a different, incorrect item:

Defensive research example; do not run untrusted code. Scroll horizontally if needed.

{"action": "click", "item_id": 2,
"reasoning": "product 2 matches because it is a pair of pants"}

In another scenario tested, the attack successfully forced the agent to purchase the adversarial sweatshirt which was fraudulently priced at $7,400.

Code and attack replication framework: https://github.com/AlejandroParedesLT/vlm_attacks (opens in a new tab)

Impact

Remote attackers can manipulate autonomous VLM agents into executing unauthorized actions simply by displaying malicious images in the agent's viewing environment. In e-commerce, enterprise, or financial deployments, this can lead to targeted financial fraud, forced acquisition of incorrect or high-cost items, and complete subversion of the agent's intended tasks.

Affected Systems

  • LLaVA-v1.5-7B
  • Autonomous web agents and browser-automation frameworks utilizing LLaVA-v1.5-7B for visual reasoning and action generation.

(Note: Qwen2.5-VL-7B was explicitly tested against the same attacks and demonstrated substantial architectural robustness, resisting the majority of perturbations).

Mitigation Steps

  • Architecture Replacement: Migrate autonomous visual agents to VLM families that exhibit strong native adversarial resilience (e.g., Qwen2.5-VL-7B, which reduced attack success rates to 6.5%-15.5% compared to LLaVA's 52.6%-66.9%).
  • Pre-Deployment Red-Teaming: Integrate explicit adversarial evaluation using gradient-based (BIM, PGD) and CLIP-based spectral attacks into the testing pipeline for autonomous agents prior to commercial deployment.
  • Input Purification: Implement lightweight visual defenses, image sanitization, or input reconstruction on screenshots before passing them to the VLM inference server.

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
Both white-box and black-box research contexts are tagged; consult the primary paper for target-specific access.
Related deployment categories
Vision-language models; Agent workflows
Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
Affected systems
LLaVA-v1.5-7B Autonomous web agents and browser-automation frameworks utilizing LLaVA-v1.5-7B for visual reasoning and action generation. (Note: Qwen2.5-VL-7B was explicitly tested against the same attacks and…

Research Paper

Adversarial attacks against Modern Vision-Language Models

Primary source: arXiv. Findings are reported by the cited research and have not been independently verified.

View Paper

Evidence

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/2603.16960