Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- junos: redact cleartext passwords embedded in archive-site URLs. Fixes #3640 (@KalebFenley)
- siklu: allow parenthesis in prompt. Fixes #3841 (@ytti)
- fortios: allow parenthesis in prompt. Fixes #3846 (@ytti)
- os6: hide snmp-server community strings in the secret filter (@Jurgen1994)
- fortigate: prompt can contain HA cluster status. Fixes #3846 (@robertcheramy)
- aoscx: hide power consumption on rows where PSU output is N/A. Fixes #3864 (@FusionBrah)
- aoscx: hide input voltage readings in "show environment power-supply input-voltage". Fixes #3864 (@FusionBrah)
Expand Down
1 change: 1 addition & 0 deletions lib/oxidized/model/os6.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class OS6 < Oxidized::Model

cmd :secret do |cfg|
cfg.gsub! /(password )(\S+)/, '\1<secret hidden>'
cfg.gsub! /^(snmp-server community )\S+(.*)/, '\1<secret hidden>\2'
cfg
end

Expand Down