diff --git a/kippo/commands/base.py b/kippo/commands/base.py index 212cd68..0c8590d 100644 --- a/kippo/commands/base.py +++ b/kippo/commands/base.py @@ -4,6 +4,7 @@ import os, time, anydbm, datetime from kippo.core.honeypot import HoneyPotCommand from twisted.internet import reactor +from twisted.python import log from kippo.core.config import config from kippo.core.auth import UserDB from kippo.core import utils diff --git a/kippo/commands/ssh.py b/kippo/commands/ssh.py index 230fb79..b3a8c29 100644 --- a/kippo/commands/ssh.py +++ b/kippo/commands/ssh.py @@ -1,6 +1,7 @@ # Copyright (c) 2009 Upi Tamminen # See the COPYRIGHT file for more information +from twisted.python import log from kippo.core.honeypot import HoneyPotCommand from twisted.internet import reactor import time, re, hashlib, getopt diff --git a/kippo/commands/tar.py b/kippo/commands/tar.py index 8baf702..3f76701 100644 --- a/kippo/commands/tar.py +++ b/kippo/commands/tar.py @@ -1,6 +1,7 @@ # Copyright (c) 2009 Upi Tamminen # See the COPYRIGHT file for more information +from twisted.python import log from kippo.core.honeypot import HoneyPotCommand from kippo.core.fs import * from kippo.commands import dice, malware diff --git a/kippo/commands/wget.py b/kippo/commands/wget.py index a2d7da2..2f9cd4c 100644 --- a/kippo/commands/wget.py +++ b/kippo/commands/wget.py @@ -5,6 +5,7 @@ from kippo.core.honeypot import HoneyPotCommand from kippo.core.fs import * from twisted.web import client from twisted.internet import reactor +from twisted.python import log import stat import time