We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Branch: master Command line:
$ pyrdp-mitm.py --payload-powershell-file payload.ps1 --payload-delay 10000 --payload-duration 1000 [REDACTED]
Windows version: Server 2016 Datacenter
A simple fix would be to use ; instead of & here:
;
&
pyrdp/pyrdp/mitm/RDPMITM.py
Line 434 in 4cafde0
exit
The text was updated successfully, but these errors were encountered:
Did you git blame for why it was an ampersand to begin with? AFAIK & is not even valid on cmd, it should've been &&
git blame
&&
Sorry, something went wrong.
lubiedo
No branches or pull requests
Info
Branch: master
Command line:
Windows version: Server 2016 Datacenter
Issue:
Fix:
A simple fix would be to use
;
instead of&
here:pyrdp/pyrdp/mitm/RDPMITM.py
Line 434 in 4cafde0
This way we will ignore the output and just execute the
exit
.The text was updated successfully, but these errors were encountered: