Handle TokenGroups in NtQueryInformationToken

This commit is contained in:
Igor Pissolati
2025-04-23 18:22:06 -03:00
parent 9d0de32cde
commit 7fef4ebc24
2 changed files with 26 additions and 0 deletions

View File

@@ -770,6 +770,12 @@ struct TOKEN_USER64
SID_AND_ATTRIBUTES64 User;
};
struct TOKEN_GROUPS64
{
ULONG GroupCount;
SID_AND_ATTRIBUTES64 Groups[1];
};
struct TOKEN_OWNER64
{
EMULATOR_CAST(EmulatorTraits<Emu64>::PVOID, PSID) Owner;