summaryrefslogtreecommitdiff
path: root/src/helpers
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-10-21 20:40:51 +0200
committerChristian Poessinger <christian@poessinger.com>2021-10-21 20:40:51 +0200
commit20a2fd22f4657b60e02485cd9137bfc068fb44f9 (patch)
tree099282b164e4c5e87aa215efafecd1d87a729e3d /src/helpers
parent71e793d92faefcb589d3090b8af8d3e77e06b023 (diff)
downloadvyos-1x-20a2fd22f4657b60e02485cd9137bfc068fb44f9.tar.gz
vyos-1x-20a2fd22f4657b60e02485cd9137bfc068fb44f9.zip
strip-private: T3926: strip cisco-authentication key
Diffstat (limited to 'src/helpers')
-rwxr-xr-xsrc/helpers/strip-private.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/helpers/strip-private.py b/src/helpers/strip-private.py
index c74a379aa..e4e1fe11d 100755
--- a/src/helpers/strip-private.py
+++ b/src/helpers/strip-private.py
@@ -106,6 +106,7 @@ if __name__ == "__main__":
stripping_rules = [
# Strip passwords
(True, re.compile(r'password \S+'), 'password xxxxxx'),
+ (True, re.compile(r'cisco-authentication \S+'), 'cisco-authentication xxxxxx'),
# Strip public key information
(True, re.compile(r'public-keys \S+'), 'public-keys xxxx@xxx.xxx'),
(True, re.compile(r'type \'ssh-(rsa|dss)\''), 'type ssh-xxx'),