Windows Access Token

What is an Access Token?

An Access Token is a security object created by the Windows kernel when a user logs on. It encapsulates the identity and privileges of the logon session, determining what resources the process can access.

Key Components Live

ComponentDescriptionAPI
User SIDSecurity identifier of the accountGetTokenInformation
Group SIDsAll groups the account belongs toTokenGroups
PrivilegesSystem-wide rights (e.g., SeDebugPrivilege)TokenPrivileges
Integrity LevelLow, Medium, High, SystemTokenIntegrityLevel
Session IDLogon session identifierTokenSessionId

Inspect Your Token

Click the button to fetch the current process token details using PowerShell (requires admin).


    

Related Topics