opensearch-docs-cn/_security-plugin/access-control/impersonation.md

49 lines
1.4 KiB
Markdown
Raw Normal View History

2021-05-28 13:48:19 -04:00
---
layout: default
title: User impersonation
parent: Access control
2021-05-28 13:48:19 -04:00
nav_order: 20
---
# User impersonation
User impersonation allows specially privileged users to act as another user without knowledge of nor access to the impersonated user's credentials.
Impersonation can be useful for testing and troubleshooting, or for allowing system services to safely act as a user.
Impersonation can occur on either the REST interface or at the transport layer.
## REST interface
To allow one user to impersonate another, add the following to `opensearch.yml`:
```yml
2021-06-08 18:35:12 -04:00
plugins.security.authcz.rest_impersonation_user:
2021-05-28 13:48:19 -04:00
<AUTHENTICATED_USER>:
- <IMPERSONATED_USER_1>
- <IMPERSONATED_USER_2>
```
The impersonated user field supports wildcards. Setting it to `*` allows `AUTHENTICATED_USER` to impersonate any user.
## Transport interface
In a similar fashion, add the following to enable transport layer impersonation:
```yml
2021-06-08 18:35:12 -04:00
plugins.security.authcz.impersonation_dn:
2021-05-28 13:48:19 -04:00
"CN=spock,OU=client,O=client,L=Test,C=DE":
- worf
```
## Impersonating Users
2021-09-29 17:57:46 -04:00
To impersonate another user, submit a request to the system with the HTTP header `opendistro_security_impersonate_as` set to the name of the user to be impersonated. A good test is to make a GET request to the `_plugins/_security/authinfo` URI:
2021-05-28 13:48:19 -04:00
```bash
2021-09-29 17:57:46 -04:00
curl -XGET -u 'admin:admin' -k -H "opendistro_security_impersonate_as: user_1" https://localhost:9200/_plugins/_security/authinfo?pretty
2021-05-28 13:48:19 -04:00
```