The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

LLM agent memories can invent authority and induce unauthorized actions: a benchmark shows typed incremental memories create false permissions in up to ~50% of cases and executors act on them in ~99% of trials, while oracle memory repair prevents all such violations.

Agent Memory Is a Surface for Endogenous Authorization Laundering
Tommaso Cerruti, Mika Okamoto, Ansel Kaplan Erol · September 01, 2026
arxiv quasi_experimental medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Tommaso Cerruti unresolved corpus identity
  2. Mika Okamoto unresolved corpus identity
  3. Ansel Kaplan Erol unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Tommaso Cerruti provider ID
  2. Mika Okamoto provider ID
  3. Ansel Kaplan Erol provider ID
Persistent LLM agent memory can fabricate spurious permissions that are formed during incremental updates and, once present, lead executors to perform unauthorized actions nearly deterministically, with exact-state repair eliminating these violations.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Long-running LLM agents rely on persistent memory to carry state across interactions, including permissions, restrictions, and revocations. When memory misrepresents this evolving authorization state, the agent's own records can grant authority that the underlying history never permitted, resulting in misaligned behavior without any external attacks. We term this failure endogenous authorization laundering, where spurious permissions written into memory lead to unauthorized actions as their provenance is washed away. We then introduce EAL-Bench, which measures how accurately persistent memory preserves evolving authorization state and whether errors propagate to downstream unauthorized actions. We evaluate five LLMs as memory writers and two as executors across procurement, cybersecurity, and finance. We find that under incremental memory updates, writers create false authority for up to 50.2% of unauthorized requests; once false authority is present, executors act on it in 98.6% of trials. Two safeguards, requiring stored permissions to be backed by valid source events, and tracking permission changes through bounded event sourcing, substantially reduce laundering, but both also reject more legitimate actions, exposing a safety-utility tradeoff. Persistent memory is therefore not merely a performance component, but a part of an LLM agent's effective authorization policy.

Summary

Main Finding

Endogenous authorization laundering: an LLM agent’s persistent memory can itself create spurious permissions that the true history never granted, and those false permissions almost always lead downstream executors to perform unauthorized actions. The authors introduce EAL-BENCH to measure this effect, show it arises across domains and model families (without any attacker), and demonstrate that memory-level interventions (e.g., exact-state repair, provenance gating, or event-sourced maintenance) are required to stop it — but these defenses trade safety for lost legitimate actions.

Key Points

  • Definition and decomposition
    • Formation (F): memory encodes authority that the canonical ledger denies.
    • Propagation (G): the executor acts on that memory-encoded authority.
    • End-to-end laundering = F ∧ G.
  • Measured scale
    • Typed incremental memory produced false authority in up to 50.2% of unauthorized requests (finance).
    • Once false authority was present, executors acted on it in 98.6% of matched trials (i.e., nearly all formed false permissions propagated to unauthorized action).
    • Exact-state repair (replacing erroneous memory with oracle-correct state) eliminated unauthorized actions in all tested cases (0% after repair), isolating the failure to memory formation.
  • Memory design matters
    • Incremental updating (Mt = W(Mt−1, Bt)) is much more failure-prone than one-shot reconstruction from full history.
    • Typed memories enable deterministic detection of formation (auditable before execution) but are not by themselves sufficient to prevent formation.
    • Free-text memory cannot be deterministically evaluated for formation, so causality is established via memory-replacement experiments.
  • Mitigations and tradeoffs
    • Two defenses evaluated: (1) require stored permissions to cite valid authoritative sources (gold cited-source gating), and (2) use bounded event sourcing (extract changes per block into an immutable log and deterministically reduce).
    • Both substantially reduce laundering but increase undergranting (legitimate actions being rejected), exposing a safety–utility tradeoff.
  • Generality
    • Effect observed across three domains (procurement, cybersecurity, finance), five writer models, and two executor models — the failure is writer-general and the erroneous memory artifact carries the problem across executors.

Data & Methods

  • Benchmark: EAL-BENCH
    • Each case: multi-session organizational history H (sequence of blocks with grants, amendments, revocations, non-authoritative records) + a hidden deterministic canonical ledger R that yields the true authorization state St.
    • For each case, a matched pair of requests (one authorized, one unauthorized) differing only in the authorization-relevant field.
  • Memory treatments
    • Representations: free-text (single Markdown-like string) vs typed (schema-validated JSON authorization records with source identifiers).
    • Update strategies: one-shot (writer sees full history and creates MT) vs incremental (writer updates MT from previous memory plus new block, never re-reading raw past blocks).
    • Memory capacity bounded (calibrated) and writers allowed limited validation/repair attempts.
  • Models evaluated
    • Writers (memory creators): Nemotron 3 Ultra, Kimi K2.6, GLM 5.2, Grok 4.3, Qwen-Plus.
    • Executors (actuators): GPT-OSS-120B and DeepSeek V4 Pro.
    • All models run with fixed parameters; three random seeds used for replication.
  • Metrics & interventions
    • Authorized use: fraction of authorized requests where executor performs the action.
    • Unauthorized submission: fraction of unauthorized requests where executor performs the action.
    • Formation P(F) computed deterministically for typed memories; free-text assessed by replay interventions.
    • Interventions: exact-state repair (swap in oracle memory), pressure messaging (adds urgency without new authorization), mitigation gates (cited-source validation), bounded event sourcing.
  • Key quantitative results (selected)
    • Typed incremental memory: P(F) = 28.3% (procurement), 10.4% (cybersecurity), 50.2% (finance); corresponding unauthorized submissions roughly match these rates.
    • Exact-state repair: unauthorized action rates dropped from ~98% under erroneous memories to 0% under oracle memory (per-domain counts in paper).
  • Reproducibility
    • Open-source benchmark, run manifests, and retained artifacts; experiments pooled across seeds for descriptive replication (not precise inference).

Implications for AI Economics

  • Memory is part of an agent’s effective authorization policy
    • Persistent memory design and maintenance directly determine whether an agent can legally/contractually act; this converts an engineering/performance decision into an economic and governance one.
  • Endogenous risk raises expected loss and deployment cost
    • Unauthorized purchases, trades, or system changes caused by memory errors produce direct financial losses, regulatory risks, and operational disruptions even without external attack. Expected liability increases for firms deploying long-running agents.
  • Auditing and insurability
    • Typed memories that allow deterministic formation checks enable pre-execution audits (estimate P(F) before granting tool access) — improving insurability and risk management. Free-text memories are harder to audit.
    • Insurers and underwriters should consider memory-design and update strategy (incremental vs one-shot vs event-sourced) when pricing coverage.
  • Safety–utility tradeoffs affect adoption and productivity
    • Provenance gating / event-sourced designs reduce false authorizations but raise false negatives (undergranting), imposing operational friction and labor costs (more human approvals or delays).
    • Firms must optimize between risk-reduction (lower unauthorized action rate) and throughput/productivity (higher authorized use).
  • Organizational and market design responses
    • Protocols, standards, and certification for agent memory management (e.g., required provenance metadata, event-sourcing standards, bounded replay intervals) could reduce systemic risk and lower compliance costs.
    • Contracts and liability allocation (vendors vs deployers) need to account for endogenous laundering risk: vendors may be liable if default memory-management practices are unsafe; buyers may require particular memory architectures as procurement conditions.
  • Policy and regulatory considerations
    • Regulators may require auditable provenance, deterministic state reconstruction, or minimum guarantees on false-authorization rates for automated agents acting in regulated domains (finance, procurement, critical infra).
    • Disclosure requirements about memory design and audit logs could be mandated for high-stakes deployments.
  • Recommended near-term practices (economic/practical)
    • Prefer auditable typed representations for authorization-sensitive agents.
    • Avoid purely incremental-only memory updates for long-running authorization state, or schedule periodic full-history reconciliation.
    • Invest in deterministic event-sourced memory maintenance or external provenance verification to shift trust from LLM heuristics to verifiable processes.
    • Measure P(F) as a risk metric and include it in cost–benefit and compliance analyses when deciding to automate tasks that affect monetary flows or permissions.

Summary: The paper demonstrates a sizable, systemic, non-adversarial source of economic risk from how LLM agents store and update persistent memory. Memory management choices materially affect expected unauthorized actions and thus should be treated as first-order economic, legal, and governance variables when deploying LLM agents in finance, procurement, cybersecurity, and other high-stakes domains.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — The paper provides strong internal causal evidence via deterministic ledgers and exact-state repair showing memory causes unauthorized actions; however, the dataset is synthetic/benchmarked (LLM-assisted case generation, limited cases per domain), only a small set of model families and seeds are evaluated, and real-world deployment heterogeneity (different memory systems, user behavior, and larger-scale logs) is not covered, limiting external validity. Methods Rigormedium — Design is carefully constructed: hidden canonical ledgers, matched-pair requests, deterministically evaluable typed memories, and exact-state repair give strong internal validity and isolate formation vs propagation; but limitations include modest case counts per domain, three seeds only, synthetic/human-refined cases, fixed model temperatures and memory capacity, and selection of a handful of proprietary/open models, which constrain robustness and generalizability. SampleThree domains (procurement, cybersecurity, finance) with 8–16 multi-session cases per domain and 32–64 matched authorized/unauthorized request pairs per case set; histories span 5–18 blocks and were generated with Claude Opus 4.8 and manually refined; five writer models (Nemotron 3 Ultra, Kimi K2.6, GLM 5.2, Grok 4.3, Qwen-Plus) and two executor models (GPT-OSS-120B, DeepSeek V4 Pro); three writer-generation seeds; four memory conditions (free-text vs typed; one-shot vs incremental); hidden deterministic canonical ledgers used for ground-truth authorization; interventions include exact-state repair, pressure cues, and two writer-side mitigations (gold cited-source gate, bounded event sourcing). Themesgovernance org_design human_ai_collab IdentificationControlled benchmark experiments that (1) construct matched authorized/unauthorized request pairs with a hidden deterministic ledger establishing ground-truth authorization; (2) vary only the persistent memory artifact (typed vs free-text, one-shot vs incremental, different writer models) while holding executor, tools, and request fixed; and (3) perform memory-only interventions including exact-state repair (replacing generated memory with oracle memory) to causally attribute unauthorized executor actions to memory formation rather than executor behavior. GeneralizabilityCases are synthetic/LLM-assisted and manually curated, so results may not reflect the distribution or complexity of real organizational logs and policies., Limited set of model families, versions, and fixed inference parameters (temperature, token limits) restricts applicability to other models or settings., Benchmarks focus on three domains; other domains with different authorization complexity may behave differently., Memory manager implementation and capacity choices (LangMem profile, specific bounds) influence outcomes and may differ in deployed systems., No adversarial or prompt-injection attacks considered; only endogenous (non-malicious) failures analyzed., Small number of seeds and modest case counts limit precision of estimated rates and sensitivity to rare events.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Under typed incremental memory, false-authority formation occurred for 28.3% of procurement unauthorized requests, 10.4% of cybersecurity unauthorized requests, and 50.2% of finance unauthorized requests. Ai Safety And Ethics negative Rate at which persistent memory incorrectly authorizes requests that the canonical authorization state denies
Reading fidelity high
Study strength medium
28.3% in procurement; 10.4% in cybersecurity; 50.2% in finance
0.48
Once false authority was present in memory, executors submitted the unauthorized action in 98.6% of matched trials. Ai Safety And Ethics negative Unauthorized action submission conditional on false-authority formation
Reading fidelity high
Study strength high
n=208
98.6% of trials
0.8
Replacing erroneous memory with oracle-exact authorization state eliminated unauthorized execution. Ai Safety And Ethics positive Unauthorized submission after exact repair of persistent memory
Reading fidelity high
Study strength high
n=208
0.0% under oracle-exact memory
0.8
Incremental memory updating produced more unauthorized submissions than one-shot updating in every domain and for both memory representations. Ai Safety And Ethics negative Unauthorized submission rate under different memory-update strategies
Reading fidelity high
Study strength medium
not reported
0.48
Typed incremental memory reached a 51.0% unauthorized-submission rate in finance. Ai Safety And Ethics negative Fraction of finance requests that executors submitted despite being unauthorized
Reading fidelity high
Study strength medium
51.0% unauthorized submission
0.48
The observed authorization failures were not primarily caused by a general performance collapse, because authorized use remained high in the same memory conditions with high unauthorized submission. Ai Safety And Ethics mixed Authorized use and unauthorized submission across memory conditions
Reading fidelity high
Study strength medium
not reported
0.48
The benchmark evaluates persistent-authorization-state failures across procurement, cybersecurity, and finance using five memory-writing models and two executor models. Ai Safety And Ethics mixed Authorization-state preservation and downstream authorized or unauthorized tool actions
Reading fidelity high
Study strength medium
not reported
0.48
The two tested safeguards reduce authorization laundering but also reject more legitimate actions, creating a safety–utility tradeoff. Ai Safety And Ethics mixed Unauthorized laundering and legitimate authorized-action acceptance under mitigation strategies
Reading fidelity high
Study strength low
not reported
0.24

Notes