We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7db98 commit 76b4e71Copy full SHA for 76b4e71
pyrdp/mitm/FakeServer.py
@@ -308,7 +308,7 @@ def set_username(self, username: str):
308
time.sleep(0.1)
309
if self.fakeLoginScreen is not None:
310
self.fakeLoginScreen.set_username(username)
311
- self.check_submit()
+ self.check_submit()
312
313
def set_password(self, password: str):
314
self.fakeLoginScreen.set_password(password)
@@ -318,5 +318,6 @@ def terminate(self):
318
# TODO: the user sees "An internal error has occurred."
319
for proc in (self.rdp_server_process, self.rdp_client_process):
320
if not isinstance(proc, subprocess.CompletedProcess):
321
+ self.log.info("Killing process %(name)s", {"name": " ".join(proc.args)})
322
proc.kill()
323
self.display.stop()
0 commit comments