Files
cowrie/kippo/output
Michel Oosterhof cfd09dcdfb output plugins wip
2015-02-18 14:22:16 +00:00
..
2015-02-18 14:22:16 +00:00
2015-02-18 14:22:16 +00:00
2015-02-18 14:22:16 +00:00

To create additional output plugins, place Python modules in this directory.

Plugins need to subclass kippo.core.output.Output and define at least the methods 'start', 'stop' and 'handleLog'

import kippo.core.output

class Output(kippo.core.output.Output):

    def start(self, cfg):

    def stop(self):

    def handleLog( self, event ):