[BACK]Return to security CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/Attic/security between version 1.27 and 1.28

version 1.27, 1998/03/22 03:39:11 version 1.28, 1998/05/10 18:11:04
Line 355 
Line 355 
 fi  fi
   
 # Files that should not be owned by someone else or readable.  # Files that should not be owned by someone else or readable.
 list=".netrc .rhosts .shosts"  list=".netrc .rhosts .pgp/secring.pgp .shosts .ssh/identity .ssh/random_seed"
 awk -F: '/^[^+-]/ { print $1 " " $6 }' /etc/passwd | \  awk -F: '/^[^+-]/ { print $1 " " $6 }' /etc/passwd | \
 while read uid homedir; do  while read uid homedir; do
         for f in $list ; do          for f in $list ; do
Line 377 
Line 377 
         { print "user " $1 " " $2 " file is other writeable" }' > $OUTPUT          { print "user " $1 " " $2 " file is other writeable" }' > $OUTPUT
   
 # Files that should not be owned by someone else or writeable.  # Files that should not be owned by someone else or writeable.
 list=".bashrc .cshrc .emacs .exrc .forward .klogin .login .logout \  list=".bashrc .bash_profile .bash_login .bash_logout .cshrc \
       .profile .tcshrc .kshrc .xsession"        .emacs .exrc .forward .fvwmrc .inputrc .klogin .kshrc .login \
         .logout .nexrc .profile .screenrc .ssh .ssh/config \
         .ssh/authorized_keys .ssh/environment .ssh/known_hosts .ssh/rc \
         .tcshrc .twmrc .xsession .xinitrc .Xdefaults .Xauthority"
 awk -F: '/^[^+-]/ { print $1 " " $6 }' /etc/passwd | \  awk -F: '/^[^+-]/ { print $1 " " $6 }' /etc/passwd | \
 while read uid homedir; do  while read uid homedir; do
         for f in $list ; do          for f in $list ; do

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28