Manage Chrome-trusted CA certificates in Palo Alto Strata Cloud Manager
Project description
scm-chainguard
Manage Trusted CA certificates for Outbound Decryption in Strata Cloud Manager
Beta: This project is under active development. APIs, CLI flags, and behavior may change between releases. Use
--dry-runto preview changes before applying them.
Overview
scm-chainguard keeps your Strata Cloud Manager SSL decryption trust store in sync with publicly trusted CA certificates maintained by CCADB. It downloads the latest root (and optionally intermediate) CA certificates from one or more trust stores (Chrome, Mozilla, Microsoft, Apple, or all), compares them against what is already configured in SCM, imports any missing certificates, and adds them to the trusted root CA list used for SSL decryption.
All managed certificates are prefixed with CG_ so they can be identified and cleaned up independently.
Features
- Fetch trusted root and intermediate CA certificates from CCADB (Chrome, Mozilla, Microsoft, Apple, or all stores)
- Compare local certificates against SCM predefined and imported certificate stores
- Sync missing certificates into SCM and configure them as trusted roots
- Revoke certificates that have been removed or blocked by the trust store
- Cleanup expired
CG_-managed certificates from SCM - Dry-run mode for all write operations
Requirements
- Python >= 3.11
- An SCM service account with
client_id,client_secret, andtsg_id
Installation
pip install scm-chainguard
Or install from source:
git clone https://gitlab.com/dephell/scm-chainguard.git
cd scm-chainguard
pip install -e "."
Configuration
Set environment variables:
export SCM_CLIENT_ID="your-client-id"
export SCM_CLIENT_SECRET="your-client-secret"
export SCM_TSG_ID="your-tsg-id"
Or use a YAML config file:
scm:
client_id: "your-client-id"
client_secret: "your-client-secret"
tsg_id: "your-tsg-id"
Quick Start
# Download Chrome-trusted root CAs from CCADB (default store)
scm-chainguard fetch
# Fetch from a different trust store
scm-chainguard fetch --store mozilla
scm-chainguard fetch --store apple
scm-chainguard fetch --store microsoft
# Fetch from all trust stores at once
scm-chainguard fetch --store all
# Include intermediate certificates
scm-chainguard fetch --store chrome --include-intermediates
# Compare local certs against SCM
scm-chainguard compare
scm-chainguard compare --store mozilla
# Import missing certs and add as trusted roots (dry-run first)
scm-chainguard sync --dry-run
scm-chainguard sync
scm-chainguard sync --store all --include-intermediates
# Full pipeline: fetch -> compare -> sync
scm-chainguard run --dry-run
scm-chainguard run
scm-chainguard run --store mozilla
# Remove CG_-managed certificates distrusted by the trust store
scm-chainguard revoke --dry-run
scm-chainguard revoke
scm-chainguard revoke --store all
# Remove expired CG_-managed certificates
scm-chainguard cleanup --dry-run
scm-chainguard cleanup
Common Options
| Option | Description |
|---|---|
--config / -c |
Path to YAML config file |
--debug |
Enable debug logging |
--log-file |
Write logs to file |
--dry-run / -n |
Show what would be done without making changes |
--include-intermediates / -i |
Include intermediate certificates |
--store / -s |
Trust store to filter by: chrome (default), mozilla, microsoft, apple, all |
Disclaimer
scm-chainguard currently imports all certificates in the 'Global' folder due to an existing SCM API Implementation.
License
Apache 2.0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scm_chainguard-0.1.3.tar.gz.
File metadata
- Download URL: scm_chainguard-0.1.3.tar.gz
- Upload date:
- Size: 53.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a631a134124f7caef9872329ac340cd4ddc86fde4dc756eb1ef84733603a4ce9
|
|
| MD5 |
79fbbb41f197eda19409ccf34db9252e
|
|
| BLAKE2b-256 |
c61cbc593c7b22869b27ac263fa156285a234359f2462370ee2668df054af466
|
File details
Details for the file scm_chainguard-0.1.3-py3-none-any.whl.
File metadata
- Download URL: scm_chainguard-0.1.3-py3-none-any.whl
- Upload date:
- Size: 38.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
babf9619d3c2062db3701c75956b558e795fde231cb2ce09f092bc463ba5b35c
|
|
| MD5 |
115677d5ac94ccf31ea3ba1abd66d35b
|
|
| BLAKE2b-256 |
9c68de759fb2657a2320c75960faa59e45accae2561f7a0964b10292d2936710
|