GLACIS·AI security frameworks·Supply chain·EU timeline checked August 2026

AI supply chain security, the 2026 working playbook.

Model provenance, dataset transparency, ML-BOM and AI-BOM (CycloneDX 1.7, OWASP AIBOM), Sigstore-backed model signing, dependency risks across the LLM stack, and the CISA / international OT-AI principles that ground the federal posture as of December 2025.

By Joe Braidwood, CEO GLACIS·26 min read·EU timeline checked 26 August 2026

Jul 2025
CoSAI: Why Model Signing is Critical; AICM v1.0 supply chain domain
Oct 2025
CycloneDX 1.7 published; SBOM/ML-BOM/CBOM/AI-BOM coverage
Nov 2025
OWASP AIBOM project: v0.1 milestone (under OWASP)
Dec 2025
CISA + 8 international partners: AI in OT principles
Status note · reviewed 26 Aug 2026

The cited primary materials support documenting AI and ML components with the SPDX 3.0 specification, verifying model artefacts where signing is available, and adapting the NIST Secure Software Development Framework to the system under review.

These controls can improve provenance and traceability; none proves that every upstream or downstream dependency is trustworthy. Select formats and verification controls according to the artefacts, suppliers and deployment path in scope.

Joe Braidwood
Joe Braidwood
CEO, GLACIS
26 min read

Executive summary

AI systems inherit traditional software-supply-chain risks while introducing additional dependencies through training data, pre-trained models, fine-tuning pipelines, model registries, and inference infrastructure. The practical task is to know which components are present, where they came from, and how a compromise would be detected and contained.

This guide examines the AI-specific supply chain: data provenance, model repositories, dependency ecosystems, and infrastructure providers. We analyze real-world attacks including the PyTorch supply chain compromise (December 2022), document attack vectors from model poisoning to typosquatting, and provide implementation guidance for ML-BOM and AI SBOM.

Key finding: EU AI Act Article 11 requires technical documentation for high-risk systems, while the NIST Secure Software Development Framework supplies general practices that can be applied to the software components of an AI system. Neither framework substitutes for a system-specific threat model or legal analysis.

01
Inventory models, data, code, and services
02
Record origin, version, and ownership
03
Verify integrity before deployment
04
Plan detection, rollback, and response

In this guide

What is AI supply chain security?

AI supply chain security extends traditional software supply chain security to encompass AI-specific components: training datasets, pre-trained models, fine-tuning data, evaluation benchmarks, and model deployment infrastructure. While traditional supply chains track code dependencies, AI supply chains must also track data lineage, model provenance, and computational resources.

The AI attack surface

AI systems introduce attack surfaces that don’t exist in traditional software:

The complexity stems from AI’s multi-layered supply chain. A single deployed model might depend on a base model from Hugging Face, fine-tuning data scraped from the web, Python packages from PyPI, CUDA libraries from NVIDIA, and cloud infrastructure from AWS. Each of those is a potential compromise point.

The AI supply chain

Understanding the AI supply chain requires mapping dependencies across five distinct layers:

AI supply chain layers

Layer Components Risk Level Common Sources
Data Training sets, validation data, fine-tuning corpora Critical Web scraping, third-party datasets, user data
Models Base models, fine-tuned checkpoints, embeddings Critical Hugging Face, GitHub, model zoos
Libraries PyTorch, TensorFlow, transformers, scikit-learn High PyPI, conda-forge, npm
Infrastructure Cloud GPUs, model registries, serving platforms Medium AWS, GCP, Azure, Replicate
Tooling MLOps platforms, monitoring, experiment tracking Low-Med Weights & Biases, MLflow, Neptune

Each layer creates dependencies that must be tracked, verified, and monitored. Treat the deployed graph as the unit of review rather than a repository-wide average, and record both affected components and compensating controls.

Attack vectors in AI supply chains

AI supply chain attacks exploit trust relationships and opacity in the ML development process. Here are the primary attack vectors documented in the wild:

1. Model Poisoning

Attackers distribute pre-trained models containing backdoors that activate on specific triggers. These attacks are particularly insidious because:

Case Study: Backdoored Computer Vision Models (2023)

Researchers demonstrated backdoor attacks on popular computer vision models uploaded to Hugging Face. Models performed normally on standard inputs but misclassified images containing specific trigger patterns. The backdoors survived fine-tuning, meaning downstream users unknowingly deployed compromised models.[6]

2. Dependency Confusion & Typosquatting

ML developers rely heavily on package managers like PyPI and conda. Attackers exploit this through:

Public package repositories have repeatedly been used for typosquatting, dependency-confusion, and malicious-update campaigns. AI teams should treat package names and popularity as discovery signals, not proof of provenance or safety.

PyTorch Supply Chain Compromise (December 2022)

Attackers compromised PyTorch’s dependency chain via a malicious torchtriton package. The package executed code during installation that exfiltrated environment variables and credentials. PyTorch maintainers discovered the compromise within 24 hours and coordinated disclosure, but the incident demonstrated how even major ML frameworks face supply chain risks.[7]

3. Data Poisoning

Training data poisoning targets the datasets used to train or fine-tune models. Attack methods include:

Data poisoning is particularly effective because organizations rarely verify provenance of training data, and detecting poisoned samples requires knowing what to look for.

4. Model Repository Compromise

Platforms like Hugging Face host hundreds of thousands of models. Security risks include:

Model repositories can expose security metadata and scanning signals, but those signals do not replace the deployer’s own provenance checks, safe-loading controls, dependency review, and acceptance criteria.

Data supply chain risks

Training data represents a critical attack surface because it directly shapes model behavior. Key risks:

Data provenance challenges

Most AI teams cannot answer basic provenance questions about their training data:

For covered high-risk systems, EU AI Act Article 10 requires data-governance and management practices that address, where appropriate, data origin and collection processes. Data-lineage capabilities may support that work, but no single lineage tool or artifact establishes compliance.[8]

Third-party dataset risks

Popular datasets like ImageNet, Common Crawl, and LAION face ongoing security and compliance concerns:

Web scraping provenance

Many foundation models train on web-scraped data (Common Crawl, C4, The Pile). This creates provenance challenges:

Model supply chain risks

Pre-trained models have become infrastructure for modern AI. Public model hubs hold large, fast-changing catalogs, so one compromised or misrepresented artefact can be reused across many downstream systems. Catalogue size and download counts change continuously; the durable control is provenance for the exact artefact deployed.

Pre-trained model risks

Pickle Deserialization Vulnerabilities

PyTorch models are commonly saved using Python’s pickle format, which can execute arbitrary code during deserialization. Hugging Face now scans for malicious pickle files, but models on GitHub, Google Drive, and other sources remain unverified.

Model Card Falsification

Model cards can misrepresent training data, evaluation metrics, or intended use. Without verification, organizations may deploy models unsuitable for their use case or that violate licensing terms.

Weight Poisoning

Backdoors embedded in model weights that activate on specific inputs. These persist through fine-tuning and are difficult to detect without trigger-specific testing.

Licensing Violations

Models redistributed under incorrect licenses or with commercial restrictions. LLaMA leaks and license violations on Hugging Face have created legal exposure for downstream users.

Hugging Face security features

Hugging Face has implemented several security controls, but adoption is inconsistent:

Despite these features, model signature verification remains rare on public repositories, with most downloads occurring without cryptographic verification. Few organizations perform local security scanning before deployment.[9]

Fine-tuning attack vectors

Even when starting with a trusted base model, fine-tuning introduces risks:

Software supply chain risks

AI projects depend on complex software stacks spanning ML frameworks, data processing libraries, and deployment tools. Each dependency represents potential compromise.

The ML dependency problem

A useful dependency review answers four questions:

The number of dependencies is not itself a risk score. What matters is whether the deployed dependency graph is known, versioned, reviewed, and recoverable.

PyPI package ecosystem risks

PyPI is a large public package ecosystem whose account, publishing, provenance, and malware defenses continue to evolve. Repository controls reduce risk but do not establish that a dependency is appropriate for your deployment; pin, verify, scan, and monitor the exact artefacts you use.

Documented package-ecosystem attacks use techniques including:

Critical ML library vulnerabilities

Notable ML library vulnerabilities (2022 to 2024)

Library CVE Severity Impact
TensorFlow CVE-2022-35934 Critical Code execution via malformed SavedModel
PyTorch torchtriton compromise Critical Supply chain attack, credential theft
transformers CVE-2023-4863 High Pickle deserialization RCE
MLflow CVE-2023-6831 High Path traversal in model registry
scikit-learn CVE-2020-28975 Medium Arbitrary code execution via pickle

Dependency pinning failure

Unpinned or loosely constrained dependencies (for example, transformers>=4.0 rather than an exact, resolved version) can reduce reproducibility and admit unreviewed updates. The effect depends on the resolver, lockfile, build, testing, and promotion controls:

Pin direct and transitive dependencies where the toolchain permits it, record integrity hashes, and test updates before promotion. Where exact pinning is impractical, document the resolver, accepted ranges, and rollback procedure.

Infrastructure supply chain risks

AI infrastructure dependencies create additional attack surfaces:

Cloud provider risks

GPU supply chain

Dependence on a small number of accelerator vendors and proprietary toolchains creates concentration and portability risk:

Model hosting services

Third-party model hosting (Replicate, Together AI, Anyscale) introduces risks:

AI SBOM and ML-BOM

Traditional Software Bills of Materials (SBOMs) don’t capture AI-specific components. The industry is developing two complementary approaches:

AI SBOM extends traditional SBOM

AI SBOM extends formats like SPDX and CycloneDX to include AI components:

The Linux Foundation’s SPDX 3.0 specification (released 2024) includes AI/ML extensions, providing standardized fields for model metadata and dataset references.[10]

ML-BOM, the machine learning bill of materials

ML-BOM is a specialized format capturing ML-specific supply chain information:

ML-BOM components

Component Type Information Captured Security Relevance
Base Model Model ID, version, source repository, hash Provenance verification, backdoor detection
Training Data Dataset name, version, collection date, size Poisoning detection, licensing compliance
Fine-tuning Data Source, size, labeling process, filters applied Data poisoning, quality verification
Framework PyTorch/TensorFlow version, CUDA version Vulnerability tracking, reproducibility
Evaluation Benchmarks, metrics, test set provenance Performance verification, bias detection
Dependencies All Python packages with pinned versions CVE tracking, supply chain verification

No single BOM format is universally mandated across AI supply chains. CycloneDX 1.7 and SPDX 3.0 support AI/ML component information, but format support does not make an inventory complete; select fields and verification controls for the artefacts, suppliers, and deployment path in scope.

Implementing ML-BOM

Practical ML-BOM implementation requires:

Secure model sourcing

Organizations deploying third-party models should implement verification controls:

Model Verification Checklist

Before Download

  • Verify repository authenticity (official org, verified badge)
  • Check model card for licensing and intended use
  • Review download statistics and community feedback
  • Verify digital signature if available

After Download

  • Scan for malicious pickle operations
  • Compute and verify cryptographic hashes
  • Test on standard benchmarks to verify performance
  • Store in internal model registry with metadata

Model Provenance Tracking

Implementing model provenance requires tracking:

Model Signing

Organizations should implement model signing for internal models:

Hugging Face supports model signing via GPG, but adoption remains low. Organizations should sign internal models even if third-party models lack signatures.[12]

Dependency management for AI projects

Securing the software supply chain requires rigorous dependency management:

Dependency Scanning

Implement automated scanning for:

Dependency Pinning Best Practices

Pin Everything

Use exact version pinning for all dependencies:

# Bad - allows any version >= 2.0
torch>=2.0.0
transformers>=4.0.0

# Good - pins exact versions
torch==2.1.2
transformers==4.36.1
tokenizers==0.15.0

Dependency Auditing Workflow

Establish a risk- and event-driven auditing workflow. Cadence should reflect exposure, release frequency, active exploitation and advisories, system criticality, and applicable obligations rather than a universal weekly, monthly, or quarterly schedule:

  1. Advisory and exploitation monitoring: Match relevant security advisories and active-exploitation signals to the versioned inventory
  2. Risk-based automated scans: Set a documented cadence based on exposure, criticality, change rate, and obligations
  3. Release- and event-driven checks: Re-scan before relevant releases, after dependency changes, and when material advisories appear
  4. Periodic human review: Review ownership, maintenance, licensing, and update recommendations on a cadence justified for the system
  5. Incident response: Maintain an emergency process for material vulnerabilities

Private Package Repositories

For production systems, consider using private package mirrors:

Regulatory requirements

Supply-chain controls can support legal, contractual, and standards-based duties, but the applicable requirement depends on the organization’s role, system, components, and jurisdiction.

EU AI Act duties relevant to supply-chain risk

For covered high-risk providers, several AI Act duties can make supplier and component evidence relevant:

Under the AI Omnibus now in force, relevant Annex III high-risk provisions apply from 2 December 2027 and relevant Annex I product-embedded provisions from 2 August 2028. Organizations in scope should build supply-chain documentation before the applicable date.[8]

NIST Secure Software Development Framework (SSDF)

NIST SP 800-218 is a high-level set of recommended secure-development practices. NIST SP 800-218A adds an AI-specific community profile for generative AI and dual-use foundation models. Contractual or agency obligations vary; neither publication creates a blanket compliance mandate for every federal contractor.[13]

U.S. federal-policy status

Executive Order 14110 was revoked on 20 January 2025 by Executive Order 14148. Do not treat its reporting provisions as a current standalone obligation. NIST’s published technical guidance remains useful on its own terms, while binding duties must be traced to current statutes, regulations, procurement terms, or agency requirements.

While primarily aimed at frontier model developers, the transparency requirements establish precedent for supply chain documentation across the AI industry.[14]

Implementation checklist

Organizations should implement supply chain security controls across six areas:

1. Model Supply Chain

  • Maintain inventory of all models (internal and third-party)
  • Verify model signatures before deployment
  • Scan model files for malicious pickle operations
  • Track model provenance (source, lineage, modifications)
  • Compute and verify SHA-256 hashes of model weights

2. Data Supply Chain

  • Document provenance of all training datasets
  • Verify licensing and usage rights for datasets
  • Implement data lineage tracking (collection → preprocessing → training)
  • Scan training data for poisoning indicators
  • Maintain dataset versioning with immutable snapshots

3. Software Dependencies

  • Pin all dependencies to exact versions
  • Scan dependencies on a documented risk-based cadence and at relevant release or advisory events
  • Use private package mirrors for production
  • Implement allow-list of approved packages
  • Generate and maintain SBOM for all projects

4. Infrastructure

  • Document cloud provider dependencies and access controls
  • Audit S3/GCS bucket permissions for model storage
  • Review third-party model hosting security controls
  • Implement infrastructure-as-code for reproducibility
  • Monitor for unauthorized model access or exfiltration

5. ML-BOM

  • Define and maintain the scoped model-component inventory appropriate to each deployed system
  • Include base model, training data, dependencies, evaluation
  • Version ML-BOM alongside model versions
  • Cryptographically sign ML-BOM
  • Automate ML-BOM generation in CI/CD

6. Compliance

  • Map supply chain documentation to EU AI Act Article 11
  • Map scoped evidence to NIST SSDF Practice PO.3.2 without treating the mapping as proof of compliance
  • Prepare supply chain evidence for customer audits
  • Establish incident response for supply chain compromises
  • Reassess supply-chain risk on a cadence driven by exposure and criticality, and after relevant supplier or dependency changes, incidents, material advisories, or legal changes

Applying GLACIS to supply-chain controls

GLACIS logoGLACIS
Configured workflow

Operational evidence for supply-chain controls

Inventory spreadsheets, SBOM files, and policy documents describe supply-chain state and intent. For configured in-scope events, GLACIS can add signed records of what supply-chain controls reported; effectiveness and coverage require separate testing and evidence.

1

Use the controls you already operate

Connect a consequential decision point to existing dependency scanning, signature checking, model acceptance, or inventory controls. GLACIS does not generate a complete ML-BOM, replace a scanner, or establish upstream provenance by itself.

2

Record the control decision

Generate signed records when configured dependency-scanning, model-verification, signature-checking, and CVE-scanning controls report an outcome. Independent verification checks covered integrity and provenance properties, not effectiveness or complete capture.

3

Bind selected artefact identifiers

Preserve selected model, dependency, and data identifiers or hashes in the signed record for a covered workflow stage. Integrity checks can reveal changes to covered commitments; they do not establish a complete chain of custody or detect every unauthorized modification.

4

Regulatory Evidence Packages

Map scoped supply-chain records to EU AI Act Article 11, NIST SSDF PO.3.2, and customer review questions. The resulting evidence pack shows what configured controls reported for specific model versions; audit acceptance and compliance require separate assessment.

The difference: Documentation shows intended practice. Signed operational records add scoped evidence of what configured controls reported. Reviewers still need testing and other evidence to assess what actually occurred, effectiveness, and coverage.

Learn About Supply Chain Attestations

Frequently asked questions

How do I know if a model from Hugging Face is safe?

Assess: (1) repository and publisher authenticity, (2) provenance and community signals, (3) model-card scope and gaps, (4) downloaded files for unsafe serialization or other relevant hazards, and (5) available signatures and their trust chain. Benchmark tests can assess specific performance claims only under a declared model version, dataset, protocol, and grader; they do not ensure safety or performance outside that setup. Treat hosted models as third-party dependencies and validate them for the intended use before deployment.

What’s the difference between SBOM and ML-BOM?

An SBOM inventories software components within a declared scope. An ML-BOM adds AI-specific components such as datasets, base models, fine-tuning artifacts, evaluation protocols, and model dependencies. Neither is inherently complete: coverage depends on the system boundary, available provenance, tooling, and supplier disclosures. Use one or both formats according to the components and review need; maintaining both is not a universal requirement.

How often should I scan dependencies for vulnerabilities?

There is no universal daily, weekly, or quarterly cadence. Set scanning, review, and remediation timing from system exposure and criticality, change rate, active exploitation and supplier advisories, release events, and applicable obligations. Re-scan at relevant dependency changes and before affected releases, and provide an expedited path for material vulnerabilities.

Do I need ML-BOM if I only use OpenAI’s API?

Maintain a scoped inventory appropriate to the API-based system; whether you call it an ML-BOM depends on your internal standard and review need. Useful fields can include declared model identifiers and changes, integration and retrieval components, software dependencies, relevant configuration, and data-flow and retention terms. Provider-controlled components may remain outside your visibility, so record those boundaries explicitly.

References

  1. [1] Lyu, S. et al. “Large Language Models for Cyber Security: A Systematic Literature Review.” arXiv:2405.04760, 2024. arxiv.org
  2. [2] Sonatype. “State of the Software Supply Chain Report 2024.” sonatype.com
  3. [4] Gartner. “How to Secure the AI Model Supply Chain.” 2024.
  4. [5] ENISA. “Threat Landscape for Supply Chain Attacks.” 2024. enisa.europa.eu
  5. [6] Goldblum, M. et al. “Dataset Security for Machine Learning: Data Poisoning, Backdoor Attacks, and Defenses.” IEEE Transactions, 2023.
  6. [7] PyTorch Team. “PyTorch Supply Chain Compromise Disclosure.” December 2022. pytorch.org
  7. [8] European Parliament. “Regulation (EU) 2024/1689 on Artificial Intelligence (AI Act).” eur-lex.europa.eu
  8. [10] Linux Foundation. “SPDX 3.0 Specification with AI/ML Extensions.” 2024. spdx.github.io
  9. [12] Hugging Face Documentation. “Model Signing and Verification.” huggingface.co
  10. [13] NIST. “SP 800-218: Secure Software Development Framework (SSDF)” and “SP 800-218A: Secure Software Development Practices for Generative AI and Dual-Use Foundation Models.” nist.gov
  11. [14] The White House. “Initial Rescissions of Harmful Executive Orders and Actions.” 20 January 2025. whitehouse.gov

GLACIS·AI supply-chain evidence

Make supply-chain control execution independently checkable.

For a configured workflow, GLACIS can record what selected dependency, signature, model-acceptance, or provenance controls reported and bind covered fields into a signed operational record. It does not generate an ML-BOM, sign the model itself, replace the underlying controls, or prove complete supply-chain provenance.

See an evidence pack    Assess a workflow

Related guides