Skip to main content
LLM Security Database
Skip to research details
Back to research findings
LMVD-ID: 6e3d5974
Paper published January 1, 2026
Entry analyzed March 9, 2026
Paper-reported evidence
Confidence: Source-linked

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

LoRA Unverified Product Poisoning

In distributed Low-Rank Adaptation (LoRA) fine-tuning systems, a structural verification blind spot exists due to the decoupled aggregation of low-rank matrices. Frameworks typically evaluate and aggregate the $A$ and…

BibTeX citation

Paper-evaluated models(5)

ChatGLM2 6B, GPT-2 124M, Llama 7B +2 more
  • ChatGLM2 6B
  • GPT-2 124M
  • Llama 7B
  • Llama 13B
  • Llama 33B

Description

In distributed Low-Rank Adaptation (LoRA) fine-tuning systems, a structural verification blind spot exists due to the decoupled aggregation of low-rank matrices. Frameworks typically evaluate and aggregate the $A$ and $B$ matrices independently to reduce computational overhead. A malicious client can exploit this by submitting individually benign $A$ and $B$ matrices that satisfy standard norm-based and similarity-based anomaly detection filters, but whose composite product ($A \times B$) forms a malicious gradient update. This Gradient Assembly Poisoning (GAP) attack allows an adversary to stealthily inject targeted behavioral shifts and semantic corruption into the global model without requiring access to other clients' training data or inter-client coordination.

Examples

To execute the attack, a malicious client formulates the update as a constrained optimization problem. The attacker first computes a target malicious update offline ($\Delta W_{\text{target}} = A_{\text{target}} B_{\text{target}}$). During federated training, the attacker submits perturbed matrices $(A_i, B_i)$ that incrementally steer the global aggregated product toward $\Delta W_{\text{target}}$. The submitted matrices are mathematically constrained to remain within the benign spatial and temporal distribution limits (e.g., $|A_i - \mu_A|_2 \leq \tau_A$ and $|B_i - \mu_B|_2 \leq \tau_B$). Because the server only verifies the decoupled matrices and not the product $A \times B$, the matrices bypass security filters while successfully injecting the poison upon global recomposition. (See the paper "Low Rank Comes with Low Security: Gradient Assembly Poisoning Attacks against Distributed LoRA-based LLM Systems" for full formulation).

Impact

An attacker controlling a minority of clients can induce persistent, targeted semantic corruption in the global language model. The attack successfully degrades targeted outputs (e.g., reducing BLEU scores by up to 14.5% and increasing factual/grammatical errors by over 800% in specific semantic domains) while preserving surface-level language fluency and overall response length. This allows the poisoning to remain completely undetected by state-of-the-art federated anomaly detectors like FoolsGold, Spectral Signatures, and strict norm-thresholding.

Affected Systems

Federated and distributed LLM fine-tuning platforms employing decoupled LoRA parameter aggregation, including FedIT-style architectures.

Mitigation Steps

  • Composition Monitoring: Explicitly verify and monitor the composite product matrix ($A \times B$) rather than validating the $A$ and $B$ matrices strictly in isolation. Analyzing the combined update behavior is necessary to detect subtle malicious multiplicative patterns that bypass single-matrix inspections.
  • Adaptive Verification: Apply layer-specific, fine-grained validation protocols instead of uniform checks. Enforce stricter consistency checks and dynamic threshold adjustments on structurally fragile components known to be highly sensitive to parameter perturbations, such as attention and output layers.

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
Fine-tuning
Taxonomy labels only; paper-specific deployment prerequisites are not inferred.
Affected systems
Federated and distributed LLM fine-tuning platforms employing decoupled LoRA parameter aggregation, including FedIT-style architectures.

Research Paper

Low Rank Comes with Low Security: Gradient Assembly Poisoning Attacks against Distributed LoRA-based LLM Systems

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