3 # Debian/OpenSSL Weak Key Detector
5 # Copyright (C) 2008, Florian Weimer <fw@deneb.enyo.de>
7 # Permission to use, copy, modify, and distribute this software for
8 # any purpose with or without fee is hereby granted, provided that the
9 # above copyright notice and this permission notice appear in all
12 # THE SOFTWARE IS PROVIDED "AS IS" AND FLORIAN WEIMER AND HIS
13 # CONTRIBUTORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
14 # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
15 # NO EVENT SHALL FLORIAN WEIMER OR HIS CONTRIBUTORS BE LIABLE FOR ANY
16 # SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
18 # AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
19 # OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
22 # Blacklist data has been provided by Kees Cook, Peter Palfrader and
25 # Patches and comments are welcome. Please send them to
26 # <fw@deneb.enyo.de>, and use "dowkd" in the subject line.
33 usage: $0 [OPTIONS...] COMMAND [ARGUMENTS...]
37 file: examine files on the command line for weak keys
38 host: examine the specified hosts for weak SSH keys
39 user: examine user SSH keys for weakness; examine all users if no
41 help: show this help screen
45 -c FILE: set the database cache file name (default: dowkd.db)
47 dowkd currently handles the following OpenSSH host and user keys,
48 provided they have been generated on a little-endian architecture
49 (such as i386 or amd64): RSA/1024, RSA/2048 and DSA/1024. (The
50 OpenSSH version in Debian does not support DSA key generation with)
53 OpenVPN shared also detected on little-endian architecture.
55 Note that the blacklist by dowkd may be incomplete; it is only
56 intended as a quick check.
68 my $db_file = 'dowkd.db';
74 $db = tie
%db, 'DB_File', $db_file, O_RDWR
| O_CREAT
, 0777, $DB_BTREE
75 or die "error: could not open database: $!\n";
77 $db{''} = $db_version;
78 while (my $line = <DATA
>) {
79 next if $line =~ /^\**$/;
81 $line =~ /^[0-9a-f]{32}$/ or die "error: invalid data line";
82 $line =~ s/(..)/chr(hex($1))/ge;
91 $db = tie
%db, 'DB_File', $db_file, O_RDONLY
, 0777, $DB_BTREE
92 or die "error: could not open database: $!\n";
93 my $stored_version = $db{''};
94 $stored_version && $stored_version eq $db_version or create_db
;
101 sub safe_backtick
(@
) {
104 open $fh, '-|', @args
105 or die "error: failed to spawn $args[0]: $!\n";
111 @result = scalar(<$fh>);
114 $?
== 0 or return undef;
123 my $keys_vulnerable = 0;
126 print STDERR
"summary: keys found: $keys_found, weak keys: $keys_vulnerable\n";
129 sub check_hash
($$;$) {
130 my ($name, $hash, $descr) = @_;
132 if (exists $db{$hash}) {
134 $descr = $descr ?
" ($descr)" : '';
135 print "$name: weak key$descr\n";
139 sub ssh_fprint_file
($) {
141 my $data = safe_backtick qw
/ssh-keygen -l -f/, $name;
142 defined $data or return ();
143 my @data = $data =~ /^(\d+) ([0-9a-f]{2}(?::[0-9a-f]{2}){15})/;
144 return @data if @data == 2;
148 sub ssh_fprint_check
($$$) {
149 my ($name, $length, $hash) = @_;
150 if ($length == 1024 || $length == 2048) {
152 $hash =~ s/(..)/chr(hex($1))/ge;
153 check_hash
$name, $hash, "OpenSSH/$length";
155 warn "$name: warning: no suitable blacklist\n";
161 seek $tmp, 0, 0 or die "seek: $!";
162 truncate $tmp, 0 or die "truncate: $!";
165 sub cleanup_ssh_auth_line
($) {
168 $line =~ /^(?:ssh-(?:rsa|dss)\s|\d+\s+\d+\s+\d)/ and return $line;
171 if ($line =~ /^\s+(.*)/) {
175 if ($line =~ /^"(.*)/) {
179 if ($line =~ /^\\.(.*)/) {
180 # It doesn't matter if we don't deal with \000 properly, we
181 # just need to defuse the backslash character.
185 if ($line =~ /^[a-zA-Z0-9_=+-]+(.*)/) {
186 # Skip multiple harmless characters in one go.
190 if ($line =~ /^.(.*)/) {
191 # Other characters are stripped one by one.
195 return undef; # empty string, no key found
198 if ($line =~ /^"(.*)/) {
202 if ($line =~ /^\\.(.*)/) {
203 # See above, defuse the backslash.
207 if ($line =~ /^[^\\"]+(.*)/) {
211 return undef; # missing closing double quote
214 $line =~ /^(?:ssh-(?:rsa|dss)\s|\d+\s+\d+\s+\d)/ and return $line;
218 sub from_ssh_auth_fd
($$) {
219 my ($name, $auth) = @_;
220 my $tmp = new File
::Temp
;
221 while (my $line = <$auth>) {
223 next if $line =~ m/^\s*(#|$)/;
227 my $l = cleanup_ssh_auth_line
$line;
233 print $tmp "$line\n" or die "print: $!";
234 $tmp->flush or die "flush: $!";
235 my ($length, $hash) = ssh_fprint_file
"$tmp";
236 if ($length && $hash) {
237 ssh_fprint_check
"$name:$lineno", $length, $hash;
242 warn "$name:$lineno: warning: unparsable line\n";
246 sub from_ssh_auth_file
($) {
249 unless (open $auth, '<', $name) {
250 warn "$name:0: error: open failed: $!\n";
253 return from_ssh_auth_fd
$name, $auth;
256 sub from_openvpn_key
($) {
259 unless (open $key, '<', $name) {
260 warn "$name:0: open failed: $!\n";
265 while (my $line = <$key>) {
267 if ($line =~ /^-----BEGIN OpenVPN Static key V1-----/) {
270 if ($line =~ /^([0-9a-f]{32})/) {
272 $line =~ s/(..)/chr(hex($1))/ge;
273 check_hash
"$name:$.", $line, "OpenVPN";
276 warn "$name:$.: warning: illegal OpenVPN file format\n";
283 sub from_ssh_host
(@
) {
287 my ($name,$aliases,$addrtype,$length,@addrs) = gethostbyname $_;
288 @addrs or warn "warning: host not found: $_\n";
293 push @lines, safe_backtick qw
/ssh-keyscan -t rsa/, @names;
294 push @lines, safe_backtick qw
/ssh-keyscan -t dsa/, @names;
296 my $tmp = new File
::Temp
;
297 for my $line (@lines) {
298 next if $line =~ /^#/;
299 my ($host, $data) = $line =~ /^(\S+) (.*)$/;
301 print $tmp "$data\n" or die "print: $!";
303 my ($length, $hash) = ssh_fprint_file
"$tmp";
304 if ($length && $hash) {
305 ssh_fprint_check
"$host", $length, $hash;
307 warn "$host: warning: unparsable line\n";
314 my ($name,$passwd,$uid,$gid,
315 $quota,$comment,$gcos,$dir,$shell,$expire) = getpwnam($user);
317 warn "warning: user $user does not exist\n";
320 for my $name (qw
/authorized_keys authorized_keys2
321 known_hosts known_hosts2
322 id_rsa
.pub id_dsa
.pub identity
.pub
/) {
323 my $file = "$dir/.ssh/$name";
324 from_ssh_auth_file
$file if -r
$file;
328 sub from_user_all
() {
329 # This was one loop initially, but does not work with some Perl
333 while (my $name = getpwent) {
337 from_user
$_ for @names;
340 if (@ARGV && $ARGV[0] eq '-c') {
342 $db_file = shift @ARGV if @ARGV;
346 my $cmd = shift @ARGV;
347 if ($cmd eq 'file') {
348 for my $name (@ARGV) {
349 next if from_openvpn_key
$name;
350 from_ssh_auth_file
$name;
352 } elsif ($cmd eq 'host') {
354 } elsif ($cmd eq 'user') {
356 from_user
$_ for @ARGV;
360 } elsif ($cmd eq 'help') {
364 die "error: invalid command, use \"help\" to get help\n";