Using the latest JFrog products?
JFrog Platform User Guide


Skip to end of metadata
Go to start of metadata

Overview

JFrog Access provides JFrog Products with access tokens as a flexible means of authentication with a wide range of capabilities:

  • Cross-instance authentication
    Access tokens can be used for authentication, not only by the instance or cluster where they were created, but also for other instances and clusters that are all part of the same "circle of trust" (described below).
  • User and non-user authentication
    The case for authenticating users is clear, however access tokens can also be assigned to non-user entities such as CI server jobs.

  • Time-based access control
    Access tokens have an expiry period so you can control the period of time for which you grant access. However, you may also delegate that control to the receiving user by making them refreshable

  • Flexible scope
    Byassigning Groups to tokens, you can control the level of access they provide.

Access Service

与摩根富林明一起介绍了访问服务rog Artifactory 5.4 and is compatible with old access tokens. This means that tokens generated in versions previous to Artifactory 5.4 can still be used for authentication in newer versions that use JFrog Access, however, you cannot use tokens generated by newer versions of Artifactory (v5.4 and above) to authenticate in an older version.

Breaking Change

Since access tokens created through Artifactory v5.4 and above cannot be used for authentication with older versions of Artifactory, a circle-of-trust in which some instances are running versions below 5.4 while others are running version 5.4 and above, will be broken.

To support the capabilities of JFrog Access, an access token has the following properties:

Subject
The user to which this access token is associated. If the user specified does not exist, Artifactory will create a corresponding transient user. Artifactory administrators can assign a token to any subject (user); non-admin users who create tokens can only assign tokens to themselves.
Issuer
An identifier of the cluster on which the access token was created
Scope
The scope of access that the token provides. Access to the REST API is always provided by default; in addition, you may specify the group memberships that the token provides. Artifactory administrators can set any scope; non-admin users can only set the scope to a subset of the groups to which they belong.
Expiry
The period of time from creation after which the token will expire. Artifactory administrators can set any expiry period; non-admin users can change the expiry period only up to an admin configurable value (non-admin-max-duration).
Refreshable
Whether the token may be refreshed for continued use or not
Audience
The set of instances or clusters on which the token may be used identified by their Service IDs. The Service ID is a unique, internally generated identifier of a JFrog service or cluster and, in the case of Artifactory, is obtained throughGet Service IDREST API endpoint.

Access tokens are fully managed throughREST APIas described below.

Page Contents


Cross-Instance Authentication

Access tokens support cross-instance authentication through a "circle of trust" established by sharing a public certificate among all participating instances. It is up to the Service administrator to make sure that all participating instances are equipped with the certificates. This means that any instance can generate a token to be used with any other instance within the circle of trust. When a Service instance receives a REST API call authenticated by a signed token, it will use the root certificate that includes the public key to verify that its issuer is in the circle of trust. Even while running, Access is aware of any new certificates that have been added or removed.

Limitations

Access will check for a token's revocation based on theminimum-revocable-expiryparameter set in theaccess.config.file.
If a token was created on a different server and is checked for revocability, it will be considered revoked, since it is not in the checked database.
Therefore, by default, only non-revokable tokens (tokens withexpiry) can be used for authentication on a different instance from the one that created it.

Only the issuing instance can refresh a token.

Cross instance authentication

Setting the Private Key and Root Certificate

It is up to the Service administrator to make sure that all participating instances are equipped with the public key (root certificate).

Access watches a directory of trusted public keys withnio WatchServiceand reloads the keys when it needs to verify a token.

All you need to do is to place the keys under$ACCESS_HOME Only a token that is expirable and r/etc/keys/trusted.

Access home layout (new entries are in bold):

[$ACCESS_HOME]

|
+-- etc/
+-- keys/
|-- root.crt
|-- private.key
+--trusted/
|--[name].crt
|--[name2].crt
|--[name3].crt
+--...

Artifactory HA

For Artifactory HA installations, root certificates should to be placed under$ARTIFACTORY_HOME/access/etc/keys/trustedin each node of a cluster.

Keypair propagation in an existing HA cluster

With High Availability clusters the private.key and root.key are propagated automatically and are updated per what it is the saved on the cluster shared database.

The steps should be made primary node, which will also print the following log entry in its$ARTIFACTORY_HOME/logs/artifactory.log:

Publish changes to another access peer [http://:/access] successfully


Using Tokens

There are several ways you can use access tokens for authentication.

Basic Authentication

An access token can be used instead of a password for basic authentication. This may be useful when you need a client (such as certain dependency managers) that only supports basic authentication to access Artifactory. In this case, it is important to access Artifactory using the same user name provided when creating the token (with-d "username=").

For example, to use an access token as a password to ping Artifactory you could use:

curl -u: http://ARTIFACTORY_URL/api/system/ping

Authorization Headers

An access token can be used as a bearer token in authorization headers. This is especially useful for authenticating CI servers with Artifactory instead of using credentials, since you don't need to have a user defined in Artifactory if the group provided in-d "member-of-groups:"is configured in that Artifactory instance. As a result, there is no need to manage fictitious users for your different automation tools that need access to Artifactory.

For example, to use an access token as a bearer token to ping Artifactory you could use:

curl -H "Authorization: Bearer " http://ARTIFACTORY_URL/api/system/ping

Support Authentication for Non-Existing Users

One of the big advantages of access tokens is the fact that you don't have to create a user in Artifactory to use them. When creating a token, you can specify a user name that does not exist, and Artifactory will create a transient user that will only exist as long as the token is valid. This can be useful when providing access to different tools such as a CI server coordinating a build without having to manage fake user accounts. This method is also more secure since you can assign a new token for each "job" that the external tool runs.

Artifactory Administrator Only

Note that this feature is only available for Artifactory administrator since non-admin users can only create tokens with themselves as the Subject.


Generating Expirable Tokens

By default, expirable tokens cannot be revoked, but this can be configured

When creating a token, if the token expiry is set to a value smaller than theminimum-revocable-expiryparameter specified in theaccess.config.ymlconfiguration file,the token will be non-revocable.

默认情况下,的值minimum-revocable-expiry参数设置为1,这意味着任何令牌with expiry specified cannot be revoked until it expires naturally.

You can limit the validity period of a token by setting the expiry time when generating a token. If set, the token will be valid until the expiration time will pass.
You can also set a token to be non-expirable by setting the expiry to zero, in which case it will be valid indefinitely until actively revoked.

This value is set by using the "expires_in=" param when generating the token (see example in REST API section below). If not used the default value will be 3600 meaning your token will be valid for one hour.

Artifactory Administrator Only

Note that from version 6.5, only an Artifactory administrator can change the validity period of a token to any value.

Non-admin users, can only set the token validity period to a value that is equal or less than the maximum allowed value. This can be specified by setting theartifactory.access.token.non.admin.max.expires.inparameter in the$ARTIFACTORY_HOME/etc/artifactory.system.properties文件(默认:3600)。

Generating Refreshable Tokens

As mentioned above, you can limit the validity period of an token by setting its expiry time. To allow extending access privileges of a token once it has expired, you can provide a refresh token which will generate a new token with the same privileges as the original one. This takes token management out of the hands of its issuer and delegates it to the user who received the token.

Who can refresh?

Only the instance (or HA cluster) that issued a refreshable token can actually refresh it.

Limitation

An external user who has created a token will still be able to refresh it even if he has been removed from the external authentication server.


Generating Admin Tokens

In general, the scope for a token is defined by specifying the groups into which the token is included, however, an Artifactory administrator can also create a token with admin privileges. This can be useful for JFrog Mission Control and JFrog Xray since both of these complementary applications require admin permissions to work seamlessly with Artifactory. With this capability, when Mission Control or Xray connect to an instance of Artifactory, they can create an admin tokens and use that for authentication instead of using basic authentication with a username and password.


Revoking Tokens

Any token created with expiry greater than theminimum-revocable-expiryparameter can be revoked usingtheRevoke TokenREST API endpoint. Note that you can only revoke a token on the instance (or cluster) that issued it unless that instance is part of an Access Federation setup (which requires an Enterprise+ license).

A token with an expiry specified will lapse automatically upon reaching its expiry period.

A token that is not expirable (i.e. it was created with itsexpires_inparameter set to 0) must be actively revoked to terminate its usage.


REST API

All management of access tokens is done via REST API through the endpoints described below.

Create Token

Creates an access token.

For details, refer to the JFrog Artifactory REST API documentation forCreate Token.

Refresh Token

Refresh an access token to extend its validity. If only the access token and the refresh token are provided (and no other parameters), this pair is used for authentication. If username or any other parameter is provided, then the request must be authenticated by a token that grants admin permissions.

For details, refer to the JFrog Artifactory REST API documentation forRefresh Token.

Revoke Token

Revoke an access token

For details, refer to the JFrog Artifactory REST API documentation forRevoke Token.

Get Service ID

Provides the service ID of an Artifactory instance or cluster

For details, refer to the JFrog Artifactory REST API documentation forGet Service ID.


  • No labels