-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enable the MITM SSL Client (from MITM to RDP Server) to use TLS 1.2 * Enable the MITM SSL Server (from RDP Client to MITM) to use TLS 1.2 * Allow any TLS version between client and MITM / MITM and server. * lock pyopenssl version to its major version to avoid breaking changes (see https://www.pyopenssl.org/en/stable/changelog.html) * Disable TLS 1.3 to avoid "impossible to decrypt" pcaps scenarios
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
'names', | ||
'pyasn1', | ||
'pycryptodome', | ||
'pyopenssl', | ||
'pyopenssl==19', | ||
'pytz', | ||
'rsa', | ||
'scapy', | ||
|