Lines Matching refs:password
26 /* Validates a user password using PAM */
101 if (!(strcmp(compare_message, "password:") == 0)) {
102 /* We don't recognise the prompt as asking for a password,
161 /* Process a password auth request, sending success or failure messages as
162 * appropriate. To the client it looks like it's doing normal password auth (as
164 * fairly standard (ie just "what's your username, what's your password, OK").
179 unsigned char * password = NULL;
185 /* check if client wants to change password */
193 password = buf_getstring(ses.payload, &passwordlen);
199 userData.passwd = password;
223 "bad PAM password attempt for '%s' from %s",
234 "bad PAM password attempt for '%s' from %s",
242 dropbear_log(LOG_NOTICE, "PAM password auth succeeded for '%s' from %s",
248 if (password != NULL) {
249 m_burn(password, passwordlen);
250 m_free(password);