Purpose of commit: bugfix
Commit summary:
---------------
pam_userdb was not paying close enough attention to password comparisons.
Bug report and fix from Vladimir Pastukhov.
0.76: please submit patches for this section with actual code/doc
patches!
+* pam_userdb: require that all of typed password matches that in
+ database report and fix from Vladimir Pastukhov. (Bug 484252 - agmorgan)
* pam_malloc: revived malloc debugging code, now tied to
- --enable-memory-debug and added strdup() (Bug 485454 - agmorgan)
+ --enable-memory-debug and added strdup() support (Bug 485454 - agmorgan)
* pam_tally: Nalin's fix for lastlog corruption (Bug 476985 - agmorgan)
* pam_rhosts: Nalin adds support for '+hostname', and zdd fix
compilation warning. (Bug 476986 - agmorgan)
if (data.dptr != NULL) {
int compare = 0;
- /* bingo, got it */
- if (ctrl & PAM_ICASE_ARG)
- compare = strncasecmp(pass, data.dptr, data.dsize);
- else
- compare = strncmp(pass, data.dptr, data.dsize);
+
+ if (strlen(pass) != data.dsize) {
+ compare = 1;
+ } else if (ctrl & PAM_ICASE_ARG) {
+ compare = strncasecmp(data.dptr, pass, data.dsize);
+ } else {
+ compare = strncmp(data.dptr, pass, data.dsize);
+ }
dbm_close(dbm);
if (compare == 0)
return 0; /* match */