示例#1
0
文件: http.py 项目: jnels124/recce7
    def __init__(self, socket, config, framework):
        BasePlugin.__init__(self, socket, config, framework)

        self.rfile = SocketIO(socket, "r")
        self.wfile = SocketIO(socket, "w")

        socket.settimeout(60)
示例#2
0
文件: telnet.py 项目: jnels124/recce7
 def __init__(self, socket, config, framework):
     BasePlugin.__init__(self, socket, config, framework)
     self.input_type = None
     self.user_input = None
     self._session = None
示例#3
0
文件: telnet.py 项目: RECCE7/recce7
 def __init__(self, socket, config, framework):
     BasePlugin.__init__(self, socket, config, framework)
     self.input_type = ""
     self.user_input = ""
     self.io = SocketIO(self._skt, "rw")
     self._session = None