Skip to content

Commit

Permalink
Merge pull request #397 from GoSecure/new-rdp-version-10.10
Browse files Browse the repository at this point in the history
Added RDP protocol version 10.9 and 10.10
  • Loading branch information
obilodeau authored Apr 1, 2022
2 parents c1df430 + 02cdae5 commit 24a9037
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/master[

=== Enhancements

* Support for RDP version 10.9 and 10.10 ({uri-issue}396[#396], {uri-issue}397[#397])
* Capture and log NetNTLMv2 hash if the server enforces NLA and we don't have the NLA redirection attack activated ({uri-issue}367[#367], {uri-issue}358[#358])
* `pyrdp-convert` video conversion is now 6x faster! (See {uri-issue}349[#349])
* `pyrdp-convert` video format can be viewed during encoding and will play even if the conversion process crashes or is halted ({uri-issue}352[#352], {uri-issue}353[#353])
Expand Down
4 changes: 3 additions & 1 deletion pyrdp/enum/rdp.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# This file is part of the PyRDP project.
# Copyright (C) 2018-2020 GoSecure Inc.
# Copyright (C) 2018-2022 GoSecure Inc.
# Licensed under the GPLv3 or later.
#

Expand Down Expand Up @@ -252,6 +252,8 @@ class RDPVersion(IntEnum):
RDP10_6 = 0x8000B
RDP10_7 = 0x8000C
RDP10_8 = 0x8000d
RDP10_9 = 0x8000e
RDP10_10 = 0x8000f


class ColorDepth(IntEnum):
Expand Down

0 comments on commit 24a9037

Please sign in to comment.