From e73e93143a9a810597831a9588c447628dd16f38 Mon Sep 17 00:00:00 2001 From: Leigh B Stoller <stoller@flux.utah.edu> Date: Thu, 8 Oct 2020 13:39:59 -0600 Subject: [PATCH] Do not dump DSA keys, we don't like them anymore. --- account/dumpuser.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/account/dumpuser.in b/account/dumpuser.in index 556a6bb992..38936eace7 100644 --- a/account/dumpuser.in +++ b/account/dumpuser.in @@ -1,6 +1,6 @@ #!/usr/bin/perl -w # -# Copyright (c) 2010-2013, 2018 University of Utah and the Flux Group. +# Copyright (c) 2010-2020 University of Utah and the Flux Group. # # {{{EMULAB-LICENSE # @@ -178,6 +178,9 @@ sub DumpUser($) # Pubkeys are special. if (@keys) { foreach my $key (@keys) { + next + if ($key =~ /^ssh-dss/); + print "<pubkeys>$key</pubkeys>\n"; } } -- GitLab