Skip to content

Commit

Permalink
snmp_facts: Hide user sensitive information in console (#1621) (#1623)
Browse files Browse the repository at this point in the history
**SECURITY** - CVE-2021-20178

Hide user sensitive information like `privkey` and `authkey`
while logging in console.

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
(cherry picked from commit 3560aeb)

Co-authored-by: Abhijeet Kasurde <akasurde@redhat.com>
  • Loading branch information
patchback[bot] and Akasurde committed Jan 12, 2021
1 parent a1429d0 commit fa2d2d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/snmp_facts.yml
@@ -0,0 +1,2 @@
security_fixes:
- 'snmp_facts - **CVE-2021-20178** - hide user sensitive information such as ``privkey`` and ``authkey`` from logging into the console (https://github.com/ansible-collections/community.general/pull/1621).'
4 changes: 2 additions & 2 deletions plugins/modules/net_tools/snmp_facts.py
Expand Up @@ -269,8 +269,8 @@ def main():
level=dict(type='str', choices=['authNoPriv', 'authPriv']),
integrity=dict(type='str', choices=['md5', 'sha']),
privacy=dict(type='str', choices=['aes', 'des']),
authkey=dict(type='str'),
privkey=dict(type='str'),
authkey=dict(type='str', no_log=True),
privkey=dict(type='str', no_log=True),
),
required_together=(
['username', 'level', 'integrity', 'authkey'],
Expand Down

0 comments on commit fa2d2d6

Please sign in to comment.