| 144 | } |
| 145 | |
| 146 | uint64_t GetWowTEB(void* TEB) { |
| 147 | static constexpr size_t WowTEBOffsetMemberOffset {0x180c}; |
| 148 | return static_cast<uint64_t>( |
| 149 | *reinterpret_cast<LONG*>(reinterpret_cast<uintptr_t>(TEB) + WowTEBOffsetMemberOffset) + reinterpret_cast<uint64_t>(TEB)); |
| 150 | } |
| 151 | |
| 152 | bool IsDispatcherAddress(uint64_t Address) { |
| 153 | const auto& Config = SignalDelegator->GetConfig(); |
no outgoing calls
no test coverage detected