Mickey De Baets

Results 2 comments of Mickey De Baets

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 =...

Solved a merge conflict Replaced `mapping_enum_group.add_argument("--shares", type=str, nargs="?", const="", help="Enumerate shares and access, filter on specified argument…")` with `mapping_enum_group.add_argument("--shares", action="store_true", help="Enumerate shares and access") `