supply chain / chromadb

ChromaDB

registryPyPI
package namechromadb
maintainerChroma

ChromaDB is an open-source, embedded vector database popular in prototype and production RAG applications. It can run fully in-memory, as a local persistent store, or as a server. Its lightweight footprint makes it the default vector store in most LangChain and LlamaIndex quickstarts, meaning it appears in a large fraction of LLM application repositories.

api usage

Checking ChromaDB

chromadb 0.5.0 is a clean version with no known supply chain compromise. The response returns compromised: false with an empty sources array.

bash
curl "https://api.attestd.io/v1/check?product=chromadb&version=0.5.0" \
  -H "Authorization: Bearer YOUR_API_KEY"
json
{
  "product": "chromadb",
  "version": "0.5.0",
  "supported": true,
  "risk_state": "none",
  "supply_chain": {
    "compromised": false,
    "sources": [],
    "malware_type": null,
    "description": null,
    "advisory_url": null,
    "compromised_at": null,
    "removed_at": null
  },
  "last_updated": "2026-05-01T00:00:00Z"
}
attack surface

Why this package is monitored

Embedded database libraries have direct filesystem access to the local data store. A malicious publish can read all stored embeddings and associated document metadata from the local persistence directory without making any network requests.

Attestd monitors chromadb using the following detection sources:

registry

Manually curated advisories in the Attestd registry, verified by a human analyst. Confidence 1.0.

osv

OSV.dev malicious-package advisories with IDs prefixed MAL-. Confidence 0.95.

pypi_yank

Versions yanked on PyPI with a security-related yanked_reason annotation. Confidence 0.80.

related