mirror of https://mirror.osredm.com/root/redis.git
redis-cli - handle sensitive command redaction for variadic CONFIG SET (#11975)
In the Redis 7.0 and newer version, config set command support multiply `<parameter> <value>` pairs, thus the previous sensitive command condition does not apply anymore For example: The command: **config set maxmemory 1GB masteruser aa** will be written to redis_cli historyfile In this PR, we update the condition for these sensitive commands config set masteruser <username> config set masterauth <master-password> config set requirepass foobared
This commit is contained in:
parent
f38aa6bfb7
commit
a4a0eab52b
|
@ -3261,12 +3261,15 @@ static int isSensitiveCommand(int argc, char **argv) {
|
|||
return 1;
|
||||
} else if (argc > 2 &&
|
||||
!strcasecmp(argv[0],"config") &&
|
||||
!strcasecmp(argv[1],"set") && (
|
||||
!strcasecmp(argv[2],"masterauth") ||
|
||||
!strcasecmp(argv[2],"masteruser") ||
|
||||
!strcasecmp(argv[2],"requirepass")))
|
||||
{
|
||||
return 1;
|
||||
!strcasecmp(argv[1],"set")) {
|
||||
for (int j = 2; j < argc; j = j+2) {
|
||||
if (!strcasecmp(argv[j],"masterauth") ||
|
||||
!strcasecmp(argv[j],"masteruser") ||
|
||||
!strcasecmp(argv[j],"requirepass")) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
/* HELLO [protover [AUTH username password] [SETNAME clientname]] */
|
||||
} else if (argc > 4 && !strcasecmp(argv[0],"hello")) {
|
||||
for (int j = 2; j < argc; j++) {
|
||||
|
|
Loading…
Reference in New Issue