add first step of rsr support

This commit is contained in:
speyrefitte
2015-01-07 18:32:16 +01:00
parent 522eda39e8
commit 9a4f5f254c
5 changed files with 223 additions and 10 deletions

View File

@@ -30,7 +30,7 @@ Client RDP -> | ProxyServer | ProxyClient | -> Server RDP
Shadow client ------------|
"""
import sys, os, getopt, json
import sys, os, getopt
from rdpy.core import log, error
from rdpy.protocol.rdp import rdp
@@ -241,6 +241,7 @@ class ProxyClientFactory(rdp.ClientFactory):
controller.setDomain(self._domain)
controller.setUsername(self._username)
controller.setPassword(self._password)
controller.setPerformanceSession()
return ProxyClient(controller, self._server)
class Shadow(rdp.RDPServerObserver):