-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomWinApi.hpp
68 lines (60 loc) · 2.09 KB
/
CustomWinApi.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#pragma once
#include <Windows.h>
#include <stdio.h>
#include <cstdint>
#include <functional>
#include <iostream>
#include <thread>
#include <fstream>
#include <vector>
#include <TlHelp32.h>
#include <stdlib.h>
#include <string>
#include <xmmintrin.h>
namespace CustomAPII
{
inline uint64_t ScanSignature(uint64_t pModuleBaseAddress, const char* szSignature, size_t nSelectResultIndex = NULL) {
auto PatternToBytes = [](const char* szpattern) {
auto m_iBytes = std::vector<int>{};
const auto szStartAddr = const_cast<char*>(szpattern);
const auto szEndAddr = const_cast<char*>(szpattern) + strlen(szpattern);
for (auto szCurrentAddr = szStartAddr; szCurrentAddr < szEndAddr; ++szCurrentAddr) {
if (*szCurrentAddr == '?') {
++szCurrentAddr;
if (*szCurrentAddr == '?') ++szCurrentAddr;
m_iBytes.push_back(-1);
}
else m_iBytes.push_back(strtoul(szCurrentAddr, &szCurrentAddr, 16));
}
return m_iBytes;
};
const auto pDosHeader = (PIMAGE_DOS_HEADER)pModuleBaseAddress;
const auto pNTHeaders = (PIMAGE_NT_HEADERS)((std::uint8_t*)pModuleBaseAddress + pDosHeader->e_lfanew);
const auto dwSizeOfImage = pNTHeaders->OptionalHeader.SizeOfImage;
auto m_iPatternBytes = PatternToBytes(szSignature);
const auto pScanBytes = reinterpret_cast<std::uint8_t*>(pModuleBaseAddress);
const auto m_iPatternBytesSize = m_iPatternBytes.size();
const auto m_iPatternBytesData = m_iPatternBytes.data();
size_t nFoundResults = 0;
for (auto i = 0ul; i < dwSizeOfImage - m_iPatternBytesSize; ++i) {
bool bFound = true;
for (auto j = 0ul; j < m_iPatternBytesSize; ++j) {
if (pScanBytes[i + j] != m_iPatternBytesData[j] && m_iPatternBytesData[j] != -1) {
bFound = false;
break;
}
}
if (bFound) {
if (nSelectResultIndex != 0) {
if (nFoundResults < nSelectResultIndex) {
nFoundResults++;
bFound = false;
}
else return reinterpret_cast<uint64_t>(&pScanBytes[i]);
}
else return reinterpret_cast<uint64_t>(&pScanBytes[i]);
}
}
return NULL;
}
}