mirror of
https://github.com/aljazceru/cowrie.git
synced 2026-01-04 14:54:30 +01: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 ):