mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #783 from yalh76/token
adding token to not be logged
This commit is contained in:
commit
3d7c3d13de
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ class RedactingFormatter(Formatter):
|
|||
try:
|
||||
# This matches stuff like db_pwd=the_secret or admin_password=other_secret
|
||||
# (the secret part being at least 3 chars to avoid catching some lines like just "db_pwd=")
|
||||
match = re.search(r'(pwd|pass|password|secret|key)=(\S{3,})$', record.strip())
|
||||
match = re.search(r'(pwd|pass|password|secret|key|token)=(\S{3,})$', record.strip())
|
||||
if match and match.group(2) not in self.data_to_redact:
|
||||
self.data_to_redact.append(match.group(2))
|
||||
except Exception as e:
|
||||
|
|
Loading…
Add table
Reference in a new issue