当前位置: 首页 > 工具软件 > RDPY > 使用案例 >

python怎么重复输入密码直至正确_python – 如何使rdpy-rdpmitm让客户端重新输入用户名和密码时密码不正确...

邵麒
2023-12-01

我使用rdpy的rdpy-rdpmitm演示来实现一个rdp代理,但是我想在连接到目标之前检查密码,并让客户端重新输入用户名和密码。我的代码是这样的如何实现OnReady方法?

class ProxyServer(rdp.RDPServerObserver):

def __init__(self, controller, target, clientSecurityLevel, rssRecorder):

"""

@param controller: {RDPServerController}

@param target: {tuple(ip, port)}

@param rssRecorder: {rss.FileRecorder} use to record session

"""

rdp.RDPServerObserver.__init__(self, controller)

self._target = target

self._client = None

self._rss = rssRecorder

self._clientSecurityLevel = clientSecurityLevel

def onReady(self):

"""

@summary: Event use to inform state of server stack

First time this event is called is when human client is connected

Second time is after color depth nego, because color depth nego

restart a connection sequence

@see: rdp.RDPServerObserver.onReady

"""

if self._client is None:

# try a connection

domain, username, password = self._controller.getCredentials()

self._rss.credentials(username, password, domain, self._controller.getHostname())

width, height = self._controller.getScreen()

self._rss.screen(width, height, self._controller.getColorDepth())

if checkPassword(username, password): #password ok

reactor.connectTCP('127.0.0.1', 3389, ProxyClientFactory(self, width, height, domain, username, password,self._clientSecurityLevel))

else:

pass

#how to make client re-input username and password in this place

 类似资料: