Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

Paper世界模型World Model

False Prophets: On the Security of World Models in Agentic Systems

Large language models now power autonomous agents capable of complex, multi-step tasks in different environments. Accurate and reliable execution of these tasks requires the agent to predict the results of its actions. Recent research proposes to enhance predictive capabilities via specially trained environment simulators-world models. While world models can improve performance, they can also mislead agents into executing harmful actions, creating significant security and privacy risks. In this paper, we raise security concerns regarding the usage of world models in agentic systems. We discover a range of world model specific vulnerabilities, which can be exploited in terminal-based agents to execute malicious code or extract sensitive data. To facilitate future development, we introduce a security benchmark dataset designed for text-based world models. We argue that some risks are intrinsic to approximate world modeling, and show that attackers can induce mispredictions in agentic pipelines with up to 95% success rate, possibly resulting in unintended command execution, denial of service, drainage of wallet and private information extraction. Finally, we provide practical recommendations for practitioners to mitigate the discovered harms and harden agentic systems.

Erik Imgrund, Anna Wimbauer, Klim Kireev, Konrad RieckJuly 25, 20266 min read
中文

False Prophets: On the Security of World Models in Agentic Systems

Institution: BIFOLD & TU Berlin  |  arXiv: 2607.23147v1


One-Sentence Summary

This paper systematically explores security and privacy threats of world models in agentic systems, discovering seven attack vector categories (computability, non-determinism, missing knowledge, external environment, token count, misleading patterns, prompt injections) with up to 95% attack success rate, and provides the AgentWorld-Robust benchmark with multi-layered mitigation recommendations.


Background and Motivation

LLMs now power autonomous agents capable of complex, multi-step tasks. Accurate execution requires predicting action results — world models serve as environment simulators. While world models improve performance, they can also mislead agents into executing harmful actions, creating security and privacy risks. This paper raises security concerns about world models in agentic systems and argues some risks are intrinsic to approximate world modeling.

Figure 1: World model misprediction

Figure 1: A world model misprediction resulting in deletion of system files — the model assumes $GITHUB_WORKSPACE points to the correct directory.

Threat Model

Three security properties threatened: Confidentiality (private information extraction), Integrity (unintended command execution), Availability (denial of service). The attacker's goal is to exploit world model prediction failures to induce harmful agent actions.

Seven Attack Vectors

Fundamental Issues

Computability: Predicting program runtime is equivalent to solving the halting problem. The Ackermann function $ack(4,1)$ has time complexity $O(iA(i,n))$ — a world model may predict the correct result without recognizing the computational cost, leading to unbounded resource allocation and DoS.

$$\text{Predicting runtime} \equiv \text{Halting Problem} \quad \Rightarrow \quad \text{undecidable}$$

Non-determinism: Race conditions depend on runtime scheduler decisions. The world model outputs a single deterministic prediction rather than the space of possible interleavings. A malicious branch may execute only for a specific interleaving that the model doesn't predict.

$$P_{\text{malicious}} = P(\text{interleaving}_k) > 0, \quad \text{but } \hat{y}_{\text{WM}} \neq \text{interleaving}_k$$

External Environment: Programs involving network requests, system time, or external APIs depend on state outside the model's knowledge. Output accuracy drops to 0.05 for Qwen on external environment tests.

Technical Issues

Missing Knowledge: Post-training-cutoff changes in command-line tools. Token Count: Repetitive output induces infinite loops in LLMs, preventing exit code generation. Misleading Patterns: False information in comments. Prompt Injections: Malicious instructions embedded in input.

Figure 2: Attack vector taxonomy

Figure 2: Taxonomy of seven attack vectors — fundamental vs technical issues.

graph TD
    A["World Model Vulnerabilities"] --> B["Fundamental Issues
Intrinsic to approximate modeling"] A --> C["Technical Issues
Potentially fixable"] B --> D["Computability
Halting problem undecidable"] B --> E["Non-determinism
Race conditions unpredictable"] B --> F["External Environment
Out-of-scope state"] C --> G["Missing Knowledge
Post-cutoff changes"] C --> H["Token Count
Infinite loops"] C --> I["Misleading Patterns
False comments"] C --> J["Prompt Injections
Malicious instructions"] D --> K["DoS / Resource exhaustion"] E --> L["Control flow hijacking"] F --> M["Incorrect predictions"] G --> M H --> K I --> M J --> M

AgentWorld-Robust Benchmark

A security benchmark dataset for text-based world models covering seven attack vector categories. Scripts designed to test each vulnerability with ground-truth exit codes and outputs from real sandbox execution.

Figure 3: Benchmark construction

Figure 3: AgentWorld-Robust benchmark construction pipeline.

Evaluation Results

CategoryQwen Exit CodeQwen OutputCWM Exit CodeCWM Output
Misleading1.000.910.900.31
Injections1.000.960.990.55
Compute0.720.480.560.31
Non-Determinism0.940.310.920.09
Missing Knowledge0.910.410.840.09
Ext. Environment0.870.050.930.11
Token Count0.870.250.260.16
Overall0.860.440.770.23

Exit code accuracy consistently exceeds output accuracy. World models surprisingly robust against misleading/injection attacks (91% output accuracy) — because they simulate action results, not follow instructions. Computability and non-determinism show lowest accuracy — fundamental limitations. Attack success rate reaches up to 95%.

Figure 4: Per-category results

Figure 4: Per-category accuracy comparison between Qwen and CWM world models.

Mitigation Recommendations

LayerMeasureEffect
World ModelAdditional info (actual time)Extra context reduces misjudgment
World ModelAdversarial trainingEnhance robustness to adversarial inputs
AgentAgent harnessIndependent verification layer
AgentMultiple rolloutsConsensus from multiple simulations
SystemResource limitsHard limits prevent DoS and wallet drainage
Figure 5: Qualitative examples

Figure 5: Qualitative examples of world model mispredictions across attack categories.

Figure 6: Attack success rates

Figure 6: Attack success rates by vector category — up to 95% for some attack types.

The attack success rate can be modeled as the probability that the world model's prediction $\hat{y}$ differs from the ground truth $y$ for a given attack vector $v$:

$$ ext{ASR}(v) = P(\hat{y}_{ ext{WM}} eq y_{ ext{real}} | v) \leq 0.95$$

The overall risk of a world-model-guided agent action combines prediction error probability with action consequence severity:

$$ ext{Risk}(a) = \sum_v P(v) \cdot ext{ASR}(v) \cdot ext{Severity}(a, v)$$

where $P(v)$ is the probability of attack vector $v$ being present and $ ext{Severity}(a, v)$ measures the harm of action $a$ under misprediction $v$. This formulation shows that risk reduction requires either lowering ASR (better models) or limiting Severity (resource constraints, verification layers).

The fundamental limitation of world models can be formalized through Rice's theorem — any non-trivial semantic property of a program's execution is undecidable. Since world models approximate program execution, they inherently cannot correctly predict all cases:

$$ orall ext{WM}: \exists s \in ext{Scripts}: \hat{y}_{ ext{WM}}(s) eq y_{ ext{real}}(s)$$

This is not a limitation of current technology but a fundamental bound — no approximate world model can achieve 100% prediction accuracy on all possible programs.

Limitations

  1. Only text-based world models analyzed; image/video world models may have different attack surfaces
  2. Mitigation measures cannot solve fundamental issues (computability, non-determinism, external dependency)
  3. Benchmark scale limited; more comprehensive attack surface exploration needed

Conclusion

This paper systematically explores world model security in agentic systems. Seven attack vector categories are discovered — from computability (halting problem undecidability) to non-determinism, missing knowledge, external environment, and LLM-inherited weaknesses. Attackers can induce mispredictions with up to 95% success rate, potentially causing unintended command execution, DoS, wallet drainage, and privacy extraction. The AgentWorld-Robust benchmark and multi-layered mitigation recommendations are provided. Core insight: some risks are intrinsic to approximate world modeling — world models as "false prophets" introduce new attack surfaces while enhancing agent capabilities, and must be treated as untrusted security boundaries in deployment.

Key Insight: The world model is the agent's crystal ball — but crystal balls can lie, and a lying prophet is more dangerous than no prophet at all, because you trust it.

Related Papers

Pre-training Visual Dexterity in Simulation

Pre-training Visual Dexterity in Simulation

Large-scale pre-training has made robot policy fine-tuning increasingly data-efficient, but this progress has largely been driven by datasets and embodiments built around simple parallel-jaw grippers. Dexterous, multi-fingered hands remain comparatively data-starved because real teleoperation is costly to scale, while human hand video is off-embodiment and requires lossy pose estimation and retargeting. We introduce Simulation Pre-training for Dexterity (SPD), a pre-training framework for dexterous manipulation that uses data entirely collected in simulation. In SPD, humans manipulate virtual objects inside a VR headset, enabling on-embodiment trajectories and robot-free collection. With the help of five operators, we collect 75 hours of multi-task dexterous manipulation over one week, and use it to pre-train a causal transformer on a sequence modeling objective. We study the benefits of simulation pre-training on real-world tasks by fine-tuning on 1-2 hours of physical demonstrations on a 56-DoF bimanual dexterous setup. We find that our approach outperforms training behavior cloning policies from scratch, showing that simulation teleoperation is a viable pre-training source for real-world dexterous manipulation. We perform ablation studies, measuring the benefits of history conditioning and short action chunks for reactive control.

灵巧操作灵巧手预训练Aug 16, 2026
FA-RDP: A Frequency-Adaptive Reactive Diffusion Policy for Contact-Rich Manipulation

FA-RDP: A Frequency-Adaptive Reactive Diffusion Policy for Contact-Rich Manipulation

In contact-rich manipulation, action multimodality and reactivity dominate different stages of a single episode. Before contact, multiple trajectories might be equally valid, making it important to preserve diverse action modes. After contact, geometric constraints and force limits narrow the solution space, while successful execution demands rapid responses to force feedback. However, standard diffusion policies use a fixed inference frequency and sampling steps throughout the episode, forcing a fundamental compromise: low-frequency, multi-step sampling better preserves pre-contact multimodality but responds slowly to force feedback, whereas high-frequency sampling improves reactivity but tends to collapse distinct pre-contact modes. To resolve this tradeoff, we present FA-RDP, a frequency-adaptive reactive diffusion policy. A shared multi-frequency visual-force Transformer predicts action chunks at both low and high frequencies, while a learned multimodality indicator dynamically selects multi-step low-frequency sampling before contact and one-step high-frequency sampling as action ambiguity decreases. We further introduce Manifold Consistency Distillation (MCD), which reparameterizes the diffusion network to predict actions on the robot action manifold while retaining DDPM-based residual supervision. Experiments on three contact-rich manipulation tasks show that FA-RDP achieves the highest success rate while preserving diverse pre-contact trajectory modes. Code and videos are available at https://fa-rdp.github.io.

PaperJul 30, 2026
PhiZero: A World Model Built Around Physical Language

PhiZero: A World Model Built Around Physical Language

We introduce PhiZero, a physical world model built around physical language, a compact discrete representation of world-state transitions. Existing physical world models typically predict future videos directly in pixel space, leaving the underlying world dynamics implicit within high-dimensional visual predictors. Motivated by humans' ability to abstract predictive structure from visual experience and organize it in natural language for explicit reasoning, we learn physical language from in-the-wild videos through self-supervision and use it to explicitly reason about how the physical world evolves. Accordingly, PhiZero adopts a reason-then-render paradigm: it first infers future world evolution as a physical-language sequence and then renders the inferred transitions into videos. Extensive experiments across generation and understanding benchmarks validate the ability of PhiZero to model physically coherent world evolution. We further show its potential for realistic and interactive world modeling, fine-grained action-conditioned simulation, and zero-shot motion transfer.

PaperJul 30, 2026
Booster Lab: A Data-Centric Pipeline for Learning Deployable Humanoid Locomotion Policies

Booster Lab: A Data-Centric Pipeline for Learning Deployable Humanoid Locomotion Policies

Humanoid robot motion learning requires not only task-oriented control policies but also physically feasible and natural behaviors that can be transferred to real robots. However, robot-feasible motion data are often scarce: raw human demonstrations may be incompatible with the robot morphology, open-source clips vary in quality, and simulation-collected robot trajectories still require feasibility checking. To address these challenges, we propose a data-centric training and deployment pipeline that integrates motion data curation, real-to-sim model adaptation, AMP-based reinforcement learning, and sim-to-real deployment. We validate the framework on the Booster T1 robot and further provide preliminary cross-platform validation on Booster K1.

步态优化人形机器人AMPJun 26, 2026