From ee2aeddf26e9da4c487a1a6be8b44cd79ca3fd36 Mon Sep 17 00:00:00 2001 From: desaster Date: Tue, 23 Feb 2010 05:44:36 +0000 Subject: [PATCH] Added new random executables git-svn-id: https://kippo.googlecode.com/svn/trunk@96 951d7100-d841-11de-b865-b3884708a8e2 --- kippo/commands/dice.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kippo/commands/dice.py b/kippo/commands/dice.py index c434bcc1..dd1de70d 100644 --- a/kippo/commands/dice.py +++ b/kippo/commands/dice.py @@ -42,4 +42,14 @@ class command_wargames(HoneyPotCommand): self.exit() clist.append(command_wargames) +class command_libgnome(HoneyPotCommand): + def call(self): + self.writeln('error while loading shared libraries: libgnome.so.32: cannot open shared object file: No such file or directory') +clist.append(command_libgnome) + +class command_xconnect(HoneyPotCommand): + def call(self): + self.writeln('unable to open display ":0"') +clist.append(command_xconnect) + # vim: set sw=4 et: