예제 #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