Skip to content
New issue

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

RDP version 10.12 not supported #482

Open
hbahramiyan opened this issue Nov 23, 2024 · 2 comments
Open

RDP version 10.12 not supported #482

hbahramiyan opened this issue Nov 23, 2024 · 2 comments

Comments

@hbahramiyan
Copy link

We have tested clients which are just updated to RDP v10.12 and none of them can connect.

Error message: ValueError: 524305 is not a valid RDPVersion

image

@MickeyDB
Copy link

Try modifying enum/rdp.py and adding RDP10_12 = 0x80011 as follows:

class RDPVersion(IntEnum):
    RDP4 = 0x80001
    RDP5 = 0x80004
    RDP10 = 0x80005
    RDP10_1 = 0x80006
    RDP10_2 = 0x80007
    RDP10_3 = 0x80008
    RDP10_4 = 0x80009
    RDP10_5 = 0x8000A
    RDP10_6 = 0x8000B
    RDP10_7 = 0x8000C
    RDP10_8 = 0x8000d
    RDP10_9 = 0x8000e
    RDP10_10 = 0x8000f
    RDP10_11 = 0x80010
    RDP10_12 = 0x80011

@jmvermeulen
Copy link

There is a working PR for this #477

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants