From bb422a60fcfda2732ef140463852e72319fb3293 Mon Sep 17 00:00:00 2001 From: desaster Date: Sat, 21 Nov 2009 12:58:52 +0000 Subject: [PATCH] according to http://www.securityfocus.com/infocus/1876, "123456" should be the most common password attempt git-svn-id: https://kippo.googlecode.com/svn/trunk@41 951d7100-d841-11de-b865-b3884708a8e2 --- kippo.tac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kippo.tac b/kippo.tac index 76224bf..d56f4c0 100644 --- a/kippo.tac +++ b/kippo.tac @@ -14,7 +14,7 @@ pubKeyString, privKeyString = honeypot.getRSAKeys() # Move this somewhere if we decide to use more passwords users = ( ('root', 'root'), - ('root', '1234'), + ('root', '123456'), ) factory.portal.registerChecker(honeypot.HoneypotPasswordChecker(users)) factory.publicKeys = {'ssh-rsa': keys.Key.fromString(data=pubKeyString)}