Files
cowrie/cowrie/output
Michel Oosterhof 2017f4bdef less verbose
2017-12-28 16:08:30 +04:00
..
2015-05-12 14:57:29 +00:00
2017-12-06 10:09:02 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-12-12 10:45:44 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-10-18 05:54:20 +00:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-07-25 10:52:38 +04:00
2017-12-28 16:08:30 +04:00

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

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

import cowrie.core.output

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

    def __init__(self, cfg):

    def start(self):

    def stop(self):

    def write( self, event ):