MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / IsSecure

Method IsSecure

WinSysCore/Processes.cpp:227–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225}
226
227bool Process::IsSecure() const {
228 PROCESS_EXTENDED_BASIC_INFORMATION info;
229 if(!GetExtendedInfo(GetHandle(),&info))
230 return false;
231
232 return info.IsSecureProcess ? true : false;
233}
234
235bool Process::IsInJob(HANDLE hJob) const {
236 BOOL injob = FALSE;

Callers 1

GetAttributesMethod · 0.80

Calls 1

GetExtendedInfoFunction · 0.85

Tested by

no test coverage detected