MCPcopy Create free account
hub / github.com/bytecode77/r77-rootkit / IsProcessNameHiddenU

Function IsProcessNameHiddenU

r77/Config.c:52–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 return Configuration && StringListContains(Configuration->HiddenProcessNames, name);
51}
52BOOL IsProcessNameHiddenU(UNICODE_STRING name)
53{
54 PWCHAR chars = ConvertUnicodeStringToString(name);
55 if (chars)
56 {
57 BOOL result = IsProcessNameHidden(chars);
58 FREE(chars);
59 return result;
60 }
61 else
62 {
63 return FALSE;
64 }
65}
66BOOL IsPathHidden(LPCWSTR path)
67{
68 return Configuration && StringListContains(Configuration->HiddenPaths, path);

Callers 2

GetProcessHiddenTimesFunction · 0.85

Calls 2

IsProcessNameHiddenFunction · 0.85

Tested by

no test coverage detected