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

Method GetKernelSymbolAddressFromName

WinArk/SymbolHelper.cpp:91–94  ·  view source on GitHub ↗

https://blog.csdn.net/xiaoxinjiang/article/details/7013488

Source from the content-addressed store, hash-verified

89
90// https://blog.csdn.net/xiaoxinjiang/article/details/7013488
91ULONG64 SymbolHelper::GetKernelSymbolAddressFromName(PCSTR name) {
92 std::string symbolName = _kernelModule + "!" + name;
93 return _kernel.GetSymbolAddressFromName(symbolName.c_str());
94}
95
96ULONG64 SymbolHelper::GetWin32kSymbolAddressFromName(PCSTR name) {
97 // https://stackoverflow.com/questions/4867159/how-do-you-use-symloadmoduleex-to-load-a-pdb-file

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected