CVE Remediation for Chainguard Libraries
An overview of the CVE remediation feature for Chainguard Libraries.
Chainguard Libraries provide controlled access to security-enhanced Java and Python dependencies through the unified Chainguard platform authentication system. This guide explains how to set up access for your organization.
If you are not a Chainguard user yet, a new Chainguard account must be created and configured for access to Chainguard Libraries.
If you are already a Chainguard user, the Chainguard account owner in your organization can grant access to Chainguard Libraries.
In both cases, confirm the name of the organization so you can use it with the
--parent
parameter to specify the organization.
Once your user account is created and access is confirmed, install the
Chainguard Control chainctl
command line
tool and login to your
account:
chainctl auth login
After authentication in a browser window, a successful login displays a message and a token:
Successfully exchanged token.
Valid! Id: 8a4141a........7d9904d98c
Pull tokens are separate identities with an assigned role to access the repositories from Chainguard Libraries. You can create the pull tokens with the chainctl command or using the Chainguard console.
Create a new pull token for the Chainguard Libraries for Java with the chainctl auth pull-token command:
chainctl auth pull-token --library-ecosystem=java --parent=example --ttl=8670h
--library-ecosystem=java
: retrieve the token for use with Chainguard
Libraries for Java. Use python
for a
token to use Chainguard Libraries for
Python and javascript
for a token to
use Chainguard Libraries for
JavaScript.--parent=example
: specify the parent organization for your account as
provided when requesting access to Chainguard Libraries and replace example
.--ttl=8670h
: set the duration for the validity of the token, defaults to
720h
(equivalent to 30 days), maximum valid value is 8760h
(equivalent to
365 days), valid unit strings range from nanoseconds to hours and are ns
,
us
, ms
, s
, m
, and h
.Use the optional --name
flag to supply a meaningful and short name for the
token, to be able to locate it easier at a later stage.
When omitting the parent parameter, potentially a list of organizations is
displayed. Use the arrow keys to navigate the selection displayed after the
question “With which location is the pull token associated?” and select the
organization that has the entitlement to access Chainguard Libraries for Java.
Press /
to filter the list.
chainctl
returns a username and password suitable for basic authentication in
the response:
Username: 45a.....424eb0
Password: eyJhbGciO..........WF0IjoxN
The returned username and password combination is a new credential set in the organization that is independent of the account used to create and retrieve the credential set. It is therefore suitable for use in any service application, such as a repository manager or a build tool that is not tied to a specific user. You can also use the token as an individual for your development with direct access to Chainguard Libraries.
To use the pull token in another environment, supply the username and password for basic authentication. Note that the actual returned values are much longer.
Note: Chainguard does not offer an SLA for uptime availability of the Chainguard Libraries repositories at
libraries.cgr.dev
. To reduce production risk and ensure reliability, we recommend proxying the repositories through your own artifact repository whenever possible.
Refer to the following resources for more specific information for your needs:
Use the following steps to create a pull tokens for Chainguard Libraries in the Chainguard console.
The created token has access to pull containers from your organization’s Chainguard registries. Use the following steps to change the role to allow use with Chainguard Libraries:
- registry
is appended to the name automatically.- registry
string and add any
other desired modifications.libraries.java.pull
,
libraries.javascript.pull
or libraries.python.pull
roles and press
Update.
registry.pull
role under Roles, press Edit
role, and then Delete to remove the role.Use the credentials for manual testing in a browser or with a script and curl if you know the URL for a specific library artifact. Refer to the following sections for more details:
Using environment variables for username and password is more secure than hard coding the values in configuration files. In addition, you can use the same configuration and files for all users to simplify setup and reduce errors.
Use the env
environment output option to create a snippet for a new token
suitable for integration in a script.
$ chainctl auth pull-token --output env --library-ecosystem=java --parent=example
export CHAINGUARD_JAVA_IDENTITY_ID=45a.....424eb0
export CHAINGUARD_JAVA_TOKEN=eeyJhbGciO..........WF0IjoxN
Combine the call with eval
to populate the environment variables directly by
calling chainctl
:
eval $(chainctl auth pull-token --output env --library-ecosystem=java --parent=example)
Equivalent commands for Python and JavaScript are supported and result in values
for the CHAINGUARD_PYTHON_IDENTITY_ID
/CHAINGUARD_PYTHON_TOKEN
and
CHAINGUARD_JAVASCRIPT_IDENTITY_ID
/CHAINGUARD_JAVASCRIPT_TOKEN
variables.
Running this command as part of a login script or some other automation allows your organization to replace actual username and password values in your build tool configuration with environment variable placeholders:
curl and a number of other tools support configuration of
username and password authentication details for a specific domain in the
.netrc
file,
typically located in the user’s home directory.
Use this approach for authentication to a repository manager in your organization or to Chainguard Libraries directly, for example with pip and others for Chainguard Libraries for Python, with bazel for Chainguard Libraries for Java or for manual testing with curl.
The following example shows a suitable setup for a repo manager available at
repo.example.com
:
machine repo.example.com
login YOUR_USERNAME_FOR_REPOSITORY_MANAGER
password YOUR_PASSWORD
For a direct connection to Chainguard Libraries, for example for testing with
curl, use the following example with the username
CHAINGUARD_PYTHON_IDENTITY_ID
and password CHAINGUARD_PYTHON_TOKEN
value for
the pull token for the desired language ecosystem:
machine libraries.cgr.dev
login CHAINGUARD_PYTHON_IDENTITY_ID
password CHAINGUARD_PYTHON_TOKEN
Note that the long string for the password value must use only one line.
You can verify entitlements for your organization example
with the following
command:
chainctl libraries entitlements list --parent=example
The output must include the desired ecosystem in the table:
Ecosystem Library Entitlements for example (45a0...764595)
ID | ECOSYSTEM
------------------------------------------------------------+------------
45a...................................................2cf | JAVASCRIPT
45a....................................................e1 | JAVA
45a....................................................x6 | PYTHON
Contact your Chainguard account owner for confirmation or adjustments if necessary.
Pull tokens are separate identities with username and password that are used for access to Chainguard Libraries. The tokens have a limited Time to Live (TTL) with a default of 30 days and a maximum TTL of 365 days.
As a result, pull tokens become invalid after the TTL and are flagged as expired. For your use of Chainguard Libraries you must replace the token with a new one.
Expired tokens can no longer be used for access to Chainguard Libraries, but otherwise do not cause any issues and continue to exist until you delete them.
Inspect all pull tokens for your organization in the Chainguard console:
The list includes the following columns:
Use the action to remove a pull token:
Alternatively use chainctl with the auth pull-token and iam identities commands for various inspection and management tasks.
List all pull tokens with the list
command:
chainctl auth pull-token list
The displayed list includes the following columns:
apk.pull
, container
images registry.pull
, Python libraries libraries.python.pull
, Java
libraries libraries.java.pull
, and JavaScript libraries
libraries.javascript.pull
.List all pull tokens for Chainguard Libraries for Java that are not yet expired:
chainctl auth pull-token list --library-ecosystem=java
List all expired pull tokens for Chainguard Libraries for Python:
chainctl auth pull-token list --library-ecosystem=java --expired=true
Use the delete command for IAM
identities
to delete a specific pull token using its ID 45a0c61ea6fd97...
:
chainctl iam identities delete 45a0c61ea6fd97...
Use the identifier or name of your organization example
and the --expired
flag to remove all expired pull tokens:
chainctl iam ids rm --expired --parent=example
Last updated: 2025-07-23 15:09