[BACK]Return to auth.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/auth.c between version 1.51 and 1.51.2.1

version 1.51, 2003/11/21 11:57:02 version 1.51.2.1, 2004/08/19 04:13:26
Line 38 
Line 38 
 #include "buffer.h"  #include "buffer.h"
 #include "bufaux.h"  #include "bufaux.h"
 #include "uidswap.h"  #include "uidswap.h"
 #include "tildexpand.h"  
 #include "misc.h"  #include "misc.h"
 #include "bufaux.h"  #include "bufaux.h"
 #include "packet.h"  #include "packet.h"
Line 162 
Line 161 
         /* Raise logging level */          /* Raise logging level */
         if (authenticated == 1 ||          if (authenticated == 1 ||
             !authctxt->valid ||              !authctxt->valid ||
             authctxt->failures >= AUTH_FAIL_LOG ||              authctxt->failures >= options.max_authtries / 2 ||
             strcmp(method, "password") == 0)              strcmp(method, "password") == 0)
                 authlog = logit;                  authlog = logit;
   
Line 174 
Line 173 
         authlog("%s %s for %s%.100s from %.200s port %d%s",          authlog("%s %s for %s%.100s from %.200s port %d%s",
             authmsg,              authmsg,
             method,              method,
             authctxt->valid ? "" : "illegal user ",              authctxt->valid ? "" : "invalid user ",
             authctxt->user,              authctxt->user,
             get_remote_ipaddr(),              get_remote_ipaddr(),
             get_remote_port(),              get_remote_port(),
Line 398 
Line 397 
   
         pw = getpwnam(user);          pw = getpwnam(user);
         if (pw == NULL) {          if (pw == NULL) {
                 logit("Illegal user %.100s from %.100s",                  logit("Invalid user %.100s from %.100s",
                     user, get_remote_ipaddr());                      user, get_remote_ipaddr());
                 return (NULL);                  return (NULL);
         }          }
Line 474 
Line 473 
         fake.pw_passwd =          fake.pw_passwd =
             "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";              "$2a$06$r3.juUaHZDlIbQaO2dS9FuYxL1W9M81R1Tc92PoSNmzvpEqLkLGrK";
         fake.pw_gecos = "NOUSER";          fake.pw_gecos = "NOUSER";
         fake.pw_uid = -1;          fake.pw_uid = (uid_t)-1;
         fake.pw_gid = -1;          fake.pw_gid = (gid_t)-1;
         fake.pw_class = "";          fake.pw_class = "";
         fake.pw_dir = "/nonexist";          fake.pw_dir = "/nonexist";
         fake.pw_shell = "/nonexist";          fake.pw_shell = "/nonexist";

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.51.2.1