gitextract_gethi38c/ ├── .gitignore ├── Bypass Sysmon With Updating Rules/ │ ├── SysmonRuleUpdateBypass/ │ │ ├── SysmonDataRecv/ │ │ │ ├── SysmonDataRecv.cpp │ │ │ ├── SysmonDataRecv.vcxproj │ │ │ ├── SysmonDataRecv.vcxproj.filters │ │ │ ├── SysmonDataRecv.vcxproj.user │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ └── SysmonDataRecv.sln │ ├── bypass.xml │ ├── bypass_edr.reg │ └── readme.md ├── CriticalProcess/ │ ├── CriticalProcess/ │ │ ├── CriticalProcess.cpp │ │ ├── CriticalProcess.vcxproj │ │ ├── CriticalProcess.vcxproj.filters │ │ ├── CriticalProcess.vcxproj.user │ │ ├── pch.cpp │ │ └── pch.h │ └── CriticalProcess.sln ├── EnumAllHandles/ │ ├── EnumAllHandles/ │ │ ├── EnumAllHandles.cpp │ │ ├── EnumAllHandles.vcxproj │ │ ├── EnumAllHandles.vcxproj.filters │ │ ├── EnumAllHandles.vcxproj.user │ │ ├── pch.cpp │ │ └── pch.h │ └── EnumAllHandles.sln ├── Images/ │ └── readme.md ├── ImpersonateNtlmNegotiation/ │ ├── SSPI_Client/ │ │ ├── SSPI_Client/ │ │ │ ├── SSPI_Client.cpp │ │ │ ├── SSPI_Client.vcxproj │ │ │ ├── SSPI_Client.vcxproj.filters │ │ │ ├── SSPI_Client.vcxproj.user │ │ │ ├── SspiExample.h │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ └── SSPI_Client.sln │ └── SSPI_Server/ │ ├── SSPI_Server/ │ │ ├── SSPI_Server.cpp │ │ ├── SSPI_Server.vcxproj │ │ ├── SSPI_Server.vcxproj.filters │ │ ├── SSPI_Server.vcxproj.user │ │ ├── SspiExample.h │ │ ├── pch.cpp │ │ └── pch.h │ └── SSPI_Server.sln ├── ImpersonationPipeLine/ │ ├── NamedPipeClient/ │ │ ├── NamedPipeClient/ │ │ │ ├── NamedPipeClient.cpp │ │ │ ├── NamedPipeClient.vcxproj │ │ │ ├── NamedPipeClient.vcxproj.filters │ │ │ ├── NamedPipeClient.vcxproj.user │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ └── NamedPipeClient.sln │ └── NamedPipeServer/ │ ├── NamedPipeServer/ │ │ ├── NamedPipeServer.cpp │ │ ├── NamedPipeServer.vcxproj │ │ ├── NamedPipeServer.vcxproj.filters │ │ ├── NamedPipeServer.vcxproj.user │ │ ├── pch.cpp │ │ └── pch.h │ └── NamedPipeServer.sln ├── LICENSE └── README.md