Addendum

Key Windows Kernel Structures

The _SEP_TOKEN_PRIVILEGES in Windows is a data structure that stores information about the privileges associated with a security token. This structure is a part of a _TOKEN structure (field Privileges).

_SEP_TOKEN_PRIVILEGES has the following structure (valid for Windows 10, release 1809):

//0x18 bytes (sizeof), src: Vergilius Project
struct _SEP_TOKEN_PRIVILEGES
{
    ULONGLONG Present;                                                      //0x0
    ULONGLONG Enabled;                                                      //0x8
    ULONGLONG EnabledByDefault;                                             //0x10
};