Join our Newsletter — 33% off our NHI Course

IPFS

IPFS is a decentralized file system and content distribution protocol that identifies data by cryptographic hash rather than server location. It lets multiple nodes store and serve the same content, improving resilience and reducing dependence on a single origin server while changing how teams think about retrieval, integrity, and governance.

Expanded Definition

IPFS, or the InterPlanetary File System, is a content-addressed storage and retrieval model where files are identified by cryptographic hashes instead of by a fixed server location. For NHI and agentic AI teams, that shift matters because access, verification, and distribution can no longer be understood only through the lens of origin servers and classic URL-based trust. The protocol is often used for resilient distribution, artifact replication, and tamper-evident retrieval, but it does not automatically solve authorization, retention, or policy enforcement. Those controls still need to be applied by the organisation, typically alongside identity-aware access layers and governance processes described in the NIST Cybersecurity Framework 2.0. Usage in the industry is still evolving, especially where IPFS is used to host model assets, signed artefacts, or agent tool dependencies.

The most common misapplication is treating hash-based integrity as a substitute for access control, which occurs when teams assume a valid content address also means the content is approved for use.

Examples and Use Cases

Implementing IPFS rigorously often introduces governance and retrievability tradeoffs, requiring organisations to weigh resilience and deduplication against tighter controls over what can be published, pinned, or consumed by agents.

  • Distributing signed model weights across nodes so multiple runtimes can fetch the same immutable artefact without relying on a single download endpoint.
  • Sharing policy bundles, prompt templates, or agent tooling manifests in a way that preserves content integrity even when infrastructure changes.
  • Using IPFS as part of a software supply chain pattern, then pairing it with external attestation and approval checks before an agent is allowed to execute the artefact.
  • Replicating incident-response evidence or audit packages so teams can verify that retrieved content matches the originally published hash.
  • Supporting resilient distribution for public documentation while keeping secrets, tokens, and other sensitive credentials outside the IPFS content set, consistent with guidance in the Ultimate Guide to NHIs.

IPFS also appears in broader distributed delivery designs discussed by standards and implementation communities, but no single standard governs its governance model yet. For implementation teams, that means the protocol should be treated as a transport and integrity layer, not as a complete trust boundary, a distinction that aligns with the NIST Cybersecurity Framework 2.0 emphasis on layered controls.

Why It Matters in NHI Security

IPFS can reduce dependency on a single origin, but it also expands the places where NHI-related artefacts may exist, be cached, or be republished. That is important because NHI security failures often begin with uncontrolled distribution paths, and NHIMG research shows that 96% of organisations store secrets outside of secrets managers in vulnerable locations including code, config files, and CI/CD tools, while 79% have experienced secrets leaks. If IPFS is used to distribute agent dependencies or configuration bundles, governance must ensure that secrets are never embedded in content-addressed assets and that publication rules are enforced before artefacts become globally retrievable. The Ultimate Guide to NHIs is especially relevant here because it frames secrets hygiene, rotation, and visibility as operational necessities, not optional hardening.

Organisations typically encounter the consequences of IPFS misuse only after a supposedly immutable artefact is discovered to contain a credential, at which point content addressing becomes operationally unavoidable to address.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Non-Human Identity Top 10 and OWASP Agentic AI Top 10 address the attack and risk surface, while NIST CSF 2.0, NIST Zero Trust (SP 800-207) and NIST AI RMF set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Non-Human Identity Top 10 NHI-02 Covers secret storage and exposure risks in distributed artefacts.
NIST CSF 2.0 PR.DS Protects data integrity and storage across distributed environments.
NIST Zero Trust (SP 800-207) SC-7 Supports segmented trust boundaries for content access and retrieval.
NIST AI RMF Addresses AI system governance for data provenance and integrity.
OWASP Agentic AI Top 10 A04 Agentic systems must constrain external tools and artefact sources.

Keep secrets out of IPFS content and review published artefacts for leaked credentials.