Checklist¶
Check-Identity-01: Is user/group ownership of config files set to keystone?¶
Configuration files contain critical parameters and information required for smooth functioning of the component. If an unprivileged user, either intentionally or accidentally modifies or deletes any of the parameters or the file itself then it would cause severe availability issues causing a denial of service to the other end users. Thus user and group ownership of such critical configuration files must be set to that component owner. Additionally, the containing directory should have the same ownership to ensure that new files are owned correctly.
Run the following commands:
$ stat -L -c "%U %G" /etc/keystone/keystone.conf | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone/keystone-paste.ini | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone/policy.json | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone/logging.conf | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone/ssl/certs/signing_cert.pem | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone/ssl/private/signing_key.pem | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone/ssl/certs/ca.pem | egrep "keystone keystone"
$ stat -L -c "%U %G" /etc/keystone | egrep "keystone keystone"
Pass: If user and group ownership of all these config files is set to keystone. The above commands show output of keystone keystone.
Fail: If the above commands does not return any output as the user or group ownership might have set to any user other than keystone.
Recommended in: Internally implemented authentication methods.
Check-Identity-02: Are strict permissions set for Identity configuration files?¶
Similar to the previous check, it is recommended to set strict access permissions for such configuration files.
Run the following commands:
$ stat -L -c "%a" /etc/keystone/keystone.conf
$ stat -L -c "%a" /etc/keystone/keystone-paste.ini
$ stat -L -c "%a" /etc/keystone/policy.json
$ stat -L -c "%a" /etc/keystone/logging.conf
$ stat -L -c "%a" /etc/keystone/ssl/certs/signing_cert.pem
$ stat -L -c "%a" /etc/keystone/ssl/private/signing_key.pem
$ stat -L -c "%a" /etc/keystone/ssl/certs/ca.pem
$ stat -L -c "%a" /etc/keystone
A broader restriction is also possible: if the containing directory is set to 750, the guarantee is made that newly created files inside this directory would have the desired permissions.
Pass: If permissions are set to 640 or stricter, or the containing directory is set to 750.
Fail: If permissions are not set to at least 640/750.
Recommended in: Internally implemented authentication methods.
Check-Identity-03: is TLS enabled for Identity?¶
OpenStack components communicate with each other using various protocols and the communication might involve sensitive or confidential data. An attacker may try to eavesdrop on the channel in order to get access to sensitive information. Thus all the components must communicate with each other using a secured communication protocol like HTTPS.
If you use the HTTP/WSGI server for Identity, you should enable TLS on the HTTP/WSGI server.
Pass: If TLS is enabled on the HTTP server.
Fail: If TLS is not enabled on the HTTP server.
Recommended in: Secure communication.
Check-Identity-04: (Obsolete)¶
Check-Identity-05: Is max_request_body_size
set to default (114688)?¶
The parameter max_request_body_size
defines the maximum body size
per request in bytes. If the maximum size is not defined, the attacker
could craft an arbitrary request of large size causing the service to
crash and finally resulting in Denial Of Service attack. Assigning the
maximum value ensures that any malicious oversized request gets blocked
ensuring continued availability of the component.
Pass: If value of parameter max_request_body_size
in
/etc/keystone/keystone.conf
is set to default (114688) or some
reasonable value based on your environment.
Fail: If value of parameter max_request_body_size
is not set.
Check-Identity-06: Disable admin token in /etc/keystone/keystone.conf
¶
The admin token is generally used to bootstrap Identity. This token is the most valuable Identity asset, which could be used to gain cloud admin privileges.
Pass: If admin_token
under [DEFAULT]
section in
/etc/keystone/keystone.conf
is disabled. And,
AdminTokenAuthMiddleware
under [filter:admin_token_auth]
is deleted
from /etc/keystone/keystone-paste.ini
Fail: If admin_token
under [DEFAULT]
section is set and
AdminTokenAuthMiddleware
exists in keystone-paste.ini
.
Tip
Disabling admin_token
means it has a value of <none>
.
Check-Identity-07: insecure_debug false in /etc/keystone/keystone.conf
¶
If insecure_debug
is set to true, then the server will return
information in HTTP responses that may allow an unauthenticated or
authenticated user to get more information than normal, such as
additional details about why authentication failed.
Pass: If insecure_debug
under [DEFAULT]
section in
/etc/keystone/keystone.conf
is false.
Fail: If insecure_debug
under [DEFAULT]
section in
/etc/keystone/keystone.conf
is true.
Check-Identity-08: Use fernet token in /etc/keystone/keystone.conf
¶
OpenStack Identity service provides uuid
and fernet
as token providers.
The uuid
tokens must be persisted and is considered as insecure.
Pass: If value of parameter provider
under [token]
section in /etc/keystone/keystone.conf
is set to fernet.
Fail: If value of parameter provider
under [token]
section is set to uuid.