Command Palette
Search for a command to run...
BadWAM: 세계-행동 모델이 올바르게 상상하지만 잘못 행동할 때
BadWAM: 세계-행동 모델이 올바르게 상상하지만 잘못 행동할 때
Qi Li Xingyi Yang Xinchao Wang
초록
세계-행동 모델(WAM)은 체화된 제어를 위한 유망한 기반으로 부상하고 있다. 단순히 행동만 예측하는 대신, 행동 생성과 미래 세계 예측을 결합하는 표현을 학습한다. 이러한 결합은 종종 로봇의 행동을 상상된 미래와 대조하여 검증할 수 있으므로 강건성, 해석 가능성, 안전성의 원천으로 간주된다. 본 논문에서 우리는 이러한 가정이 취약함을 보여준다. 우리는 BadWAM을 소개하는데, 이는 세계-행동 드리프트 공격을 모델링하고 평가하기 위한 통합 프레임워크로, WAM이 상상하는 것과 실행하는 것 사이의 정렬을 깨뜨리기 위해 작은 시각적 섭동을 사용하는 새로운 종류의 WAM 특화 적대적 공격이다. BadWAM은 이 공격 표면을 공격 강도와 은밀성이라는 두 가지 자연스러운 기준에 따라 특성화한다. 적대자가 방해를 우선시할 때, BadWAM은 행동 전용 적대적 공격을 구현하여 모델을 작업 실패 행동으로 직접 유도한다. 적대자가 추가로 은밀성을 우선시할 때, BadWAM은 상상 보존 적대적 공격을 구현하여 모델의 예측된 미래를 깨끗한 상상에 가깝게 유지하면서 유해한 행동 변화를 유도하려고 한다. 이 두 공격은 함께 명백한 행동 탈취부터 모델이 그럴듯한 미래를 상상하는 것처럼 보이지만 동기화되지 않은 행동을 실행하는 더 은밀한 경우까지 WAM 특유의 실패 스펙트럼을 포착한다. 우리는 다양한 WAM 변형에 걸쳐 BadWAM을 평가한다. 결과는 우리의 공격이 폐쇄 루프 실행 하에서 작업 성공률을 상당히 감소시킴을 보여준다. 예를 들어, 행동 전용 공격은 모델 성능을 96.5%에서 43.1% 성공률로 감소시킨다. 상상 보존 공격의 결과는 WAM 특유의 취약성을 더욱 드러낸다. 즉, 적절한 미래 보존 정규화가 미래 상상 드리프트를 줄이면서도 강력한 공격 성능을 유지할 수 있다는 것이다.
One-sentence Summary
Researchers from National University of Singapore and The Hong Kong Polytechnic University propose BadWAM, a unified framework for World-Action Drift Attacks that uses small visual perturbations to break the alignment between a world-action model’s imagined future and its executed action, instantiating an action-only attack that reduces task success from 96.5% to 43.1% and an imagination-preserving attack that induces harmful action shifts while maintaining the model's clean imagination, thereby exposing a critical fragility in the safety promises of embodied control.
Key Contributions
- The paper introduces BadWAM, a unified framework for modeling and evaluating World-Action Drift Attacks, a new class of adversarial attacks that use small visual perturbations to break the alignment between a world-action model’s imagined future and its executed action.
- BadWAM instantiates two complementary attacks: an action-only attack that directly drives the model toward task-failing actions, and an imagination-preserving attack that induces harmful action shifts while keeping the predicted future close to the clean imagination, capturing a spectrum of WAM-specific failures.
- Evaluations across multiple WAM variants show that the attacks reduce closed-loop task success from 96.5% to 43.1%, and the imagination-preserving attack reveals that moderate future-preserving regularization can maintain strong attack performance while reducing future drift, exposing a vulnerability that future-based safety monitors may overlook.
Introduction
Robotic foundation models increasingly adopt world-action models (WAMs), which couple action generation with future world prediction to ground behavior in physical consequences and offer safety signals through imagined futures. However, prior work treats future prediction as a trustworthy monitor, overlooking the possibility that an attacker could decouple what the model imagines from what it executes. The authors identify a new vulnerability, World-Action Drift Attack, where small visual perturbations can hijack a WAM’s actions while leaving its predicted future visually plausible, thereby evading future-based safety checks. They introduce BadWAM, a unified black-box framework that instantiates this threat along a spectrum from overt action disruption to stealthy imagination-preserving attacks, and demonstrate across multiple WAM variants that such attacks substantially degrade closed-loop task success while keeping imagined rollouts near their clean counterparts.
Method
BadWAM is a unified framework for modeling and evaluating world-action drift attacks against deployed World-Action Models (WAMs). The framework treats a WAM as a queryable predictive-action system and optimizes bounded visual perturbations at each replanning step.
The system supports two attack instantiations that correspond to different points on the attack-strength and stealthiness spectrum: an action-only adversarial attack that prioritizes execution failure, and an imagination-preserving adversarial attack that additionally constrains predicted-future drift.
The authors are motivated by the empirical observation that action and imagination are coupled in WAMs but are not inseparable. In closed-loop traces, task failures tend to exhibit larger action shifts than successful episodes, while the corresponding imagination shifts can substantially overlap.
This suggests that the security-critical object is the alignment between action and imagination. BadWAM formulates the attack around two interface-level distances: Dact measures the deviation between clean and attacked action chunks, and Dimg measures the drift between clean and attacked imagination. Conceptually, a stealthy adversarial attack seeks large action deviation under bounded visual perturbations while keeping imagination drift below a monitorable threshold:
max∥δ∥∞≤εDact(aδ,a)s.t.Dimg(zδ,z)≤τimg.
The action-only attack captures the high-strength end of the framework. It treats the WAM as a queryable controller and focuses purely on execution disruption. Rather than enforcing any constraint on the imagined future, it searches for a bounded visual perturbation that maximizes the deviation between clean and attacked action chunks:
δt⋆=argmax∥δt∥∞≤εDact(at:t+H−1δ,at:t+H−1).
The clean action chunk is used only as a reference, meaning the attacker does not need ground-truth expert actions or task success labels during optimization. The induced shifts are not unstructured output corruption; the perturbations concentrate on task-relevant channels such as translation and gripper commands, while their temporal concentration varies across WAM variants.
For WAM deployments that expose imagined futures to planners or safety gates, the action-only objective is insufficient. BadWAM instantiates an imagination-preserving attack by solving the Lagrangian relaxation of the core objective:
δt⋆=argmax∥δt∥∞≤εDact(at:t+H−1δ,at:t+H−1)−λDimg(zt+1:t+Kδ,zt+1:t+K).
The coefficient λ controls the trade-off between attack strength and stealthiness. When decoded future videos are available, the imagination distance is instantiated as an average frame-level distance:
Dimg(vt+1:t+Kδ,vt+1:t+K)=K1∑k=1Kdframe(vt+kδ,vt+k).
BadWAM does not backpropagate through the WAM or access model parameters. At each replanning step, the attacker treats the WAM as a queryable input-output system and optimizes the attack objective with zeroth-order finite-difference queries.
For a current perturbation δt, the attacker samples random directions ui and evaluates the scalar objective J under positively and negatively perturbed observations to estimate the gradient:
∇J(δt)=m1∑i=1m2cJ(δt+cui)−J(δt−cui)ui,
where c is the finite-difference radius and m is the number of sampled directions. The perturbation is then updated and projected back into the feasible ℓ∞ ball:
δt←Π[−ε,ε](δt+η∇J(δt)).
This optimization is zeroth-order because it only uses objective values computed from WAM outputs. For each replanning step, BadWAM keeps the best perturbation found within the query budget, and the final adversarial observation is used to produce the action chunk executed by the robot.
Experiment
The evaluation tests BadWAM attacks under closed-loop control on LIBERO and RoboTwin manipulation benchmarks, comparing action-only and imagination-preserving objectives against three WAM variants. The attacks cause structured, progressive task failures that accumulate over time, with the imagination-preserving objective able to keep predicted futures closer to clean rollouts while still driving substantial success drops. Perturbations transfer across WAM variants, and simple preprocessing defenses or consistency detectors fail to reliably restore safety, underscoring the need to monitor action-imagination synchronization rather than future plausibility alone.
BadWAM attacks cause large drops in closed-loop task success across world-action model variants, with the strongest effects on LIBERO. The action-only objective reduces success by over 30 percentage points on all models, and the imagination-preserving variant achieves similar damage, showing that coupling action generation with future prediction does not prevent adversarial failures. The action-only attack on the action-only WAM causes the largest drop, lowering LIBERO success from 96.5% to 43.1%, while joint and IDM WAMs see smaller but still severe declines of 30–36 points. Imagination-preserving attacks remain nearly as effective as action-only attacks, reducing joint WAM success to 63.0% and IDM WAM success to 68.1% on LIBERO, confirming that plausible predicted futures do not guarantee safe actions.
BadWAM perturbations transfer across WAM variants, reducing target task success to 59–64% for both action-only and imagination-preserving attacks. Action-only drops range from 34 to 41 percentage points, while imagination-preserving drops are 35–39 points with moderate source imagination distances (14.3–14.9). The strong transfer shows the vulnerability exploits shared observation-space directions rather than model-specific artifacts. Action-only perturbations transfer across all pairs: target success drops to 64.2% (Action-only WAM → Joint WAM), 59.2% (Joint WAM → IDM WAM), and 61.7% (IDM WAM → Joint WAM). Imagination-preserving attacks transfer between Joint and IDM WAMs, lowering success from 100.0% to 60.8% and from 98.3% to 63.3%, with source-side imagination distances of 14.86 and 14.32. The transferred drops remain large (34.2–40.8 pp), indicating the attack does not overfit to one action head and instead affects action generation across related WAM variants.
Lightweight preprocessing defenses such as Gaussian blur and JPEG-noise ensembles recover much of the success lost to the imagination-preserving attack while keeping clean performance high. Resize-crop ensembles are not operationally useful, as they severely degrade clean success and still leave attacked policies mostly unusable. A consistency detector at a low false-positive rate misses most attacks, indicating that these non-adaptive baselines are not complete defenses. Gaussian blur raises attacked success to 85.0% on the joint WAM and 89.2% on the IDM WAM, with clean success remaining at 98.3%. JPEG-noise ensemble achieves 89.2% attacked success on the joint WAM while clean success stays at 94.2%. Resize-crop ensemble drops clean success to 52.5% (joint WAM) and 54.2% (IDM WAM), and attack success falls to near zero, making it operationally impractical. At a 5% false-positive rate, the JPEG-based augmentation-consistency detector catches only 13.4% of joint-WAM and 21.4% of IDM-WAM attacked replans. These preprocessing gains mainly show that the current attack is non-adaptive; an adaptive attacker could optimize through the same transformations.
The experiments evaluate adversarial attacks on world-action models (WAMs) in closed-loop robotic manipulation tasks, measuring task success under action-only and imagination-preserving perturbations. The attacks cause substantial drops in success across all model variants, and the imagination-preserving variant does not reduce vulnerability, indicating that coupling action generation with future prediction fails to prevent adversarial failures. Perturbations transfer effectively between different WAM architectures, revealing that the vulnerability stems from shared observation-space directions rather than model-specific artifacts. Lightweight preprocessing defenses like Gaussian blur can partially recover performance, but they are not robust against adaptive attackers, highlighting the need for stronger defenses.