summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZmegolaz <zmegolaz@gmail.com>2018-06-08 11:06:08 +0200
committerWild Kat <wk@users.noreply.github.com>2018-06-08 11:06:08 +0200
commit831cf3e4c42d53461ac1e27533ac4c2f456bd52f (patch)
treea5c2376baaed7cad49b6897e110afc066c5eb3ed /lib
parent670c044b0db9c8f7536e057eb5f5f7525f446fff (diff)
Remove more JunOS secrets (#1359)
* Remove more JunOS secrets * Removed redundant junos secret replacements. Updated changelog. * Moved this change to Master in the changelog.
Diffstat (limited to 'lib')
-rw-r--r--lib/oxidized/model/junos.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/oxidized/model/junos.rb b/lib/oxidized/model/junos.rb
index 737a000..e987930 100644
--- a/lib/oxidized/model/junos.rb
+++ b/lib/oxidized/model/junos.rb
@@ -12,11 +12,8 @@ class JunOS < Oxidized::Model
end
cmd :secret do |cfg|
- cfg.gsub!(/encrypted-password (\S+).*/, 'encrypted-password <secret removed>')
- cfg.gsub!(/pre-shared-key ascii-text (\S+).*/, 'pre-shared-key ascii-text <secret removed>')
- cfg.gsub!(/pre-shared-key hexadecimal (\S+).*/, 'pre-shared-key hexadecimal <secret removed>')
- cfg.gsub!(/authentication-key (\S+).*/, 'authentication-key <secret removed>')
cfg.gsub!(/community (\S+) {/, 'community <hidden> {')
+ cfg.gsub!(/ "\$\d\$\S+; ## SECRET-DATA/, ' <secret removed>;')
cfg
end