The win/token, win/impersonate, win/privilege, and privesc/uac packages provide Windows token manipulation: stealing tokens from other processes, thread impersonation, privilege escalation, and UAC bypass.
win/token — Steal(pid) / StealByName.
Grab another process's token (typically winlogon's SYSTEM
token) and impersonate. Foundation everything else builds on.
win/impersonate — LogonUser-based
impersonation when you have plaintext creds (vs token theft).
win/privilege — enable specific
privileges in the current token (SeDebugPrivilege for
LSASS access, SeBackupPrivilege for reg save).
privesc/uac — UAC bypass methods
(FODHelper, ComputerDefaults, sdclt, etc.) when you're
Medium-IL and need High-IL.