diff --git a/kippo/core/userdb.py b/kippo/core/userdb.py index 0ecf214b..425a8513 100644 --- a/kippo/core/userdb.py +++ b/kippo/core/userdb.py @@ -59,7 +59,7 @@ class UserDB: '''note that it allows multiple passwords for a single username''' for (login, uid, passwd) in self.userdb: - if login == thelogin and passwd == thepasswd: + if login == thelogin and (passwd == thepasswd or passwd == '*'): return True return False