2002-06-23 04:24:25 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2006-04-02 18:57:20 +00:00
|
|
|
* Mini weak password checker implementation for busybox
|
2002-06-23 04:24:25 +00:00
|
|
|
*
|
2006-04-02 18:57:20 +00:00
|
|
|
* Copyright (C) 2006 Tito Ragusa <farmatito@tiscali.it>
|
2002-06-23 04:24:25 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2002-06-23 04:24:25 +00:00
|
|
|
*/
|
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
/* A good password:
|
|
|
|
1) should contain at least six characters (man passwd);
|
|
|
|
2) empty passwords are not permitted;
|
|
|
|
3) should contain a mix of four different types of characters
|
|
|
|
upper case letters,
|
|
|
|
lower case letters,
|
|
|
|
numbers,
|
|
|
|
special characters such as !@#$%^&*,;".
|
|
|
|
This password types should not be permitted:
|
|
|
|
a) pure numbers: birthdates, social security number, license plate, phone numbers;
|
|
|
|
b) words and all letters only passwords (uppercase, lowercase or mixed)
|
2006-05-19 12:30:00 +00:00
|
|
|
as palindromes, consecutive or repetitive letters
|
2006-04-02 18:57:20 +00:00
|
|
|
or adjacent letters on your keyboard;
|
|
|
|
c) username, real name, company name or (e-mail?) address
|
|
|
|
in any form (as-is, reversed, capitalized, doubled, etc.).
|
|
|
|
(we can check only against username, gecos and hostname)
|
2006-05-19 12:30:00 +00:00
|
|
|
d) common and obvious letter-number replacements
|
2006-04-02 18:57:20 +00:00
|
|
|
(e.g. replace the letter O with number 0)
|
|
|
|
such as "M1cr0$0ft" or "P@ssw0rd" (CAVEAT: we cannot check for them
|
|
|
|
without the use of a dictionary).
|
|
|
|
|
|
|
|
For each missing type of characters an increase of password length is
|
|
|
|
requested.
|
|
|
|
|
|
|
|
If user is root we warn only.
|
|
|
|
|
|
|
|
CAVEAT: some older versions of crypt() truncates passwords to 8 chars,
|
|
|
|
so that aaaaaaaa1Q$ is equal to aaaaaaaa making it possible to fool
|
|
|
|
some of our checks. We don't test for this special case as newer versions
|
|
|
|
of crypt do not truncate passwords.
|
|
|
|
*/
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
#include "libbb.h"
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
static int string_checker_helper(const char *p1, const char *p2) __attribute__ ((__pure__));
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
static int string_checker_helper(const char *p1, const char *p2)
|
2002-06-23 04:24:25 +00:00
|
|
|
{
|
2006-04-02 18:57:20 +00:00
|
|
|
/* as sub-string */
|
2010-08-17 14:01:16 +00:00
|
|
|
if (strcasestr(p2, p1) != NULL
|
2006-04-02 18:57:20 +00:00
|
|
|
/* invert in case haystack is shorter than needle */
|
2010-08-17 14:01:16 +00:00
|
|
|
|| strcasestr(p1, p2) != NULL
|
|
|
|
/* as-is or capitalized */
|
|
|
|
/* || strcasecmp(p1, p2) == 0 - 1st strcasestr should catch this too */
|
|
|
|
) {
|
2006-04-02 18:57:20 +00:00
|
|
|
return 1;
|
2010-08-17 14:01:16 +00:00
|
|
|
}
|
2006-04-02 18:57:20 +00:00
|
|
|
return 0;
|
2002-06-23 04:24:25 +00:00
|
|
|
}
|
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
static int string_checker(const char *p1, const char *p2)
|
2002-06-23 04:24:25 +00:00
|
|
|
{
|
2010-08-17 14:01:16 +00:00
|
|
|
int size, i;
|
2006-04-02 18:57:20 +00:00
|
|
|
/* check string */
|
|
|
|
int ret = string_checker_helper(p1, p2);
|
2010-08-17 14:01:16 +00:00
|
|
|
/* make our own copy */
|
2006-08-03 15:41:12 +00:00
|
|
|
char *p = xstrdup(p1);
|
2006-04-02 18:57:20 +00:00
|
|
|
|
2010-08-17 14:01:16 +00:00
|
|
|
/* reverse string */
|
|
|
|
i = size = strlen(p1);
|
|
|
|
while (--i >= 0) {
|
|
|
|
*p++ = p1[i];
|
2002-06-23 04:24:25 +00:00
|
|
|
}
|
2010-08-17 14:01:16 +00:00
|
|
|
p -= size; /* restore pointer */
|
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
/* check reversed string */
|
|
|
|
ret |= string_checker_helper(p, p2);
|
2010-08-17 14:01:16 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
/* clean up */
|
2010-08-17 14:01:16 +00:00
|
|
|
memset(p, 0, size);
|
2006-04-02 18:57:20 +00:00
|
|
|
free(p);
|
2010-08-17 14:01:16 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
return ret;
|
2002-06-23 04:24:25 +00:00
|
|
|
}
|
|
|
|
|
2010-08-17 14:01:16 +00:00
|
|
|
#define CATEGORIES 4
|
|
|
|
|
|
|
|
#define LOWERCASE 1
|
|
|
|
#define UPPERCASE 2
|
|
|
|
#define NUMBERS 4
|
|
|
|
#define SPECIAL 8
|
|
|
|
|
|
|
|
#define LAST_CAT 8
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-05-19 12:30:00 +00:00
|
|
|
static const char *obscure_msg(const char *old_p, const char *new_p, const struct passwd *pw)
|
2002-06-23 04:24:25 +00:00
|
|
|
{
|
2010-08-17 14:01:16 +00:00
|
|
|
unsigned length;
|
|
|
|
unsigned size;
|
|
|
|
unsigned mixed;
|
|
|
|
unsigned c;
|
|
|
|
unsigned i;
|
2006-04-02 18:57:20 +00:00
|
|
|
const char *p;
|
2008-02-25 23:23:58 +00:00
|
|
|
char *hostname;
|
2006-04-02 18:57:20 +00:00
|
|
|
|
|
|
|
/* size */
|
2006-07-02 18:35:39 +00:00
|
|
|
if (!new_p || (length = strlen(new_p)) < CONFIG_PASSWORD_MINLEN)
|
2006-11-27 16:49:31 +00:00
|
|
|
return "too short";
|
2006-05-19 12:30:00 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
/* no username as-is, as sub-string, reversed, capitalized, doubled */
|
|
|
|
if (string_checker(new_p, pw->pw_name)) {
|
|
|
|
return "similar to username";
|
|
|
|
}
|
2011-07-08 06:34:28 +00:00
|
|
|
#ifndef __BIONIC__
|
2006-04-02 18:57:20 +00:00
|
|
|
/* no gecos as-is, as sub-string, reversed, capitalized, doubled */
|
2010-08-17 14:01:16 +00:00
|
|
|
if (pw->pw_gecos[0] && string_checker(new_p, pw->pw_gecos)) {
|
2006-04-02 18:57:20 +00:00
|
|
|
return "similar to gecos";
|
|
|
|
}
|
2011-07-08 06:34:28 +00:00
|
|
|
#endif
|
2006-04-02 18:57:20 +00:00
|
|
|
/* hostname as-is, as sub-string, reversed, capitalized, doubled */
|
2008-02-25 23:23:58 +00:00
|
|
|
hostname = safe_gethostname();
|
|
|
|
i = string_checker(new_p, hostname);
|
|
|
|
free(hostname);
|
|
|
|
if (i)
|
|
|
|
return "similar to hostname";
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
/* Should / Must contain a mix of: */
|
2010-08-17 14:01:16 +00:00
|
|
|
mixed = 0;
|
2006-04-02 18:57:20 +00:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
if (islower(new_p[i])) { /* a-z */
|
|
|
|
mixed |= LOWERCASE;
|
|
|
|
} else if (isupper(new_p[i])) { /* A-Z */
|
|
|
|
mixed |= UPPERCASE;
|
|
|
|
} else if (isdigit(new_p[i])) { /* 0-9 */
|
|
|
|
mixed |= NUMBERS;
|
|
|
|
} else { /* special characters */
|
|
|
|
mixed |= SPECIAL;
|
|
|
|
}
|
2010-08-17 14:01:16 +00:00
|
|
|
/* Count i'th char */
|
2006-04-02 18:57:20 +00:00
|
|
|
c = 0;
|
|
|
|
p = new_p;
|
|
|
|
while (1) {
|
2007-11-06 03:05:54 +00:00
|
|
|
p = strchr(p, new_p[i]);
|
|
|
|
if (p == NULL) {
|
2006-04-02 18:57:20 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
c++;
|
2010-08-17 14:01:16 +00:00
|
|
|
p++;
|
|
|
|
if (!*p) {
|
|
|
|
break;
|
2006-04-02 18:57:20 +00:00
|
|
|
}
|
|
|
|
}
|
2010-08-17 14:01:16 +00:00
|
|
|
/* More than 50% similar characters ? */
|
|
|
|
if (c*2 >= length) {
|
2006-04-02 18:57:20 +00:00
|
|
|
return "too many similar characters";
|
|
|
|
}
|
|
|
|
}
|
2010-08-17 14:01:16 +00:00
|
|
|
|
|
|
|
size = CONFIG_PASSWORD_MINLEN + 2*CATEGORIES;
|
2010-08-17 15:21:36 +00:00
|
|
|
for (i = 1; i <= LAST_CAT; i <<= 1)
|
2010-08-17 14:01:16 +00:00
|
|
|
if (mixed & i)
|
|
|
|
size -= 2;
|
2006-04-02 18:57:20 +00:00
|
|
|
if (length < size)
|
|
|
|
return "too weak";
|
2006-05-19 12:30:00 +00:00
|
|
|
|
2010-08-17 14:01:16 +00:00
|
|
|
if (old_p && old_p[0]) {
|
2006-04-02 18:57:20 +00:00
|
|
|
/* check vs. old password */
|
|
|
|
if (string_checker(new_p, old_p)) {
|
|
|
|
return "similar to old password";
|
|
|
|
}
|
|
|
|
}
|
2010-08-17 14:01:16 +00:00
|
|
|
|
2006-04-02 18:57:20 +00:00
|
|
|
return NULL;
|
2002-06-23 04:24:25 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
int FAST_FUNC obscure(const char *old, const char *newval, const struct passwd *pw)
|
2002-06-23 04:24:25 +00:00
|
|
|
{
|
2006-04-02 18:57:20 +00:00
|
|
|
const char *msg;
|
2002-06-23 04:24:25 +00:00
|
|
|
|
2006-11-30 16:41:15 +00:00
|
|
|
msg = obscure_msg(old, newval, pw);
|
|
|
|
if (msg) {
|
|
|
|
printf("Bad password: %s\n", msg);
|
|
|
|
return 1;
|
2002-06-23 04:24:25 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|