1
2
Fork 0
mirror of https://github.com/carlospolop/hacktricks.git synced 2023-12-14 19:12:55 +01:00

GitBook: [master] one page modified

This commit is contained in:
CPol 2020-07-23 22:17:29 +00:00 committed by gitbook-bot
parent 6adb1a512e
commit 773c42a07f
No known key found for this signature in database
GPG key ID: 07D2180C7B12D0FF

View file

@ -43,9 +43,9 @@ In this last case, this means that **you need valid credentials** to access the
### Redis Authentication
**By default** Redis can be accessed **without credentials**. However, it can be **configured** to support **only password or username + password**.
**By default** Redis can be accessed **without credentials**. However, it can be **configured** to support **only password, or username + password**.
It is possible to **set a password** in _**redis.conf**_ file with the parameter `requirepass` **or temporary** until the service restarts connecting to it and running: `config set requirepass p@ss$12E45`.
Also, a username can be configured in the parameter `masteruser` inside the _**redis.conf**_ file.
Also, a **username** can be configured in the parameter `masteruser` inside the _**redis.conf**_ file.
{% hint style="info" %}
If only password is configured the username used is "**default**".