cowrie/kippo/output
Michel Oosterhof cfd09dcdfb output plugins wip 2015-02-18 14:22:16 +00:00
..
README.md output plugins wip 2015-02-18 14:22:16 +00:00
__init__.py output plugins wip 2015-02-18 14:22:16 +00:00
jsonlog.py output plugins wip 2015-02-18 14:22:16 +00:00

README.md

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 ):