mirror of
https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite.git
synced 2025-12-24 00:39:02 +00:00
12 lines
219 B
C#
12 lines
219 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace winPEAS.Native.Structs
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct TOKEN_ELEVATION
|
|
{
|
|
public Int32 TokenIsElevated;
|
|
}
|
|
}
|