check perms on .ssh/id_ed25519; Fritjof Bornebusch
authorsthen <sthen@openbsd.org>
Mon, 21 Apr 2014 15:46:03 +0000 (15:46 +0000)
committersthen <sthen@openbsd.org>
Mon, 21 Apr 2014 15:46:03 +0000 (15:46 +0000)
libexec/security/security

index 47a979a..a7ab2df 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -T
 
-# $OpenBSD: security,v 1.25 2014/04/20 22:15:49 ajacoutot Exp $
+# $OpenBSD: security,v 1.26 2014/04/21 15:46:03 sthen Exp $
 #
 # Copyright (c) 2011, 2012 Ingo Schwarze <schwarze@openbsd.org>
 # Copyright (c) 2011 Andrew Fresh <andrew@afresh1.com>
@@ -383,7 +383,7 @@ sub check_dot_readable {
        foreach my $f (qw(
            .netrc .rhosts .gnupg/secring.gpg .gnupg/random_seed
            .pgp/secring.pgp .shosts .ssh/identity .ssh/id_dsa .ssh/id_ecdsa
-           .ssh/id_rsa 
+           .ssh/id_rsa .ssh/id_ed25519
        )) {
                next unless -e "$home/$f";
                my ($mode, $fuid) = (stat(_))[2,4];