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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
| #include <stdio.h>
#include <Windows.h> #include <processthreadsapi.h> #include <WinUser.h> #include <TlHelp32.h> #include <Psapi.h>
#define MAX_LEN 256 #define PROC_NAME L"contest.exe"
DWORD GetDwPidByName(LPCWSTR procName) { HANDLE hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, (DWORD)0); if (hSnapshot == INVALID_HANDLE_VALUE) { return 0; } LPWSTR fileNameBuf = (LPWSTR)malloc(sizeof(WCHAR) * MAX_LEN); PROCESSENTRY32 pe32; pe32.dwSize = sizeof(PROCESSENTRY32); Process32First(hSnapshot, &pe32); do { DWORD dwPID = pe32.th32ProcessID; HANDLE hProcess = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, dwPID); if (hProcess == NULL) { continue; } GetProcessImageFileName(hProcess, fileNameBuf, (DWORD)MAX_LEN); WCHAR* pFileName = wcsrchr(fileNameBuf, L'\\'); pFileName++; if (!wcscmp(procName, pFileName)) { free((void*)fileNameBuf); return dwPID; } } while (Process32Next(hSnapshot, &pe32)); free((void*)fileNameBuf); return 0; }
DWORD GetMainThreadId(DWORD processId) { HANDLE hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0); if (hSnapshot == INVALID_HANDLE_VALUE) { return 0; }
THREADENTRY32 te32; te32.dwSize = sizeof(THREADENTRY32);
DWORD threadId = 0;
if (Thread32First(hSnapshot, &te32)) { do { if (te32.th32OwnerProcessID == processId) { threadId = te32.th32ThreadID; break; } } while (Thread32Next(hSnapshot, &te32)); }
CloseHandle(hSnapshot); return threadId; }
HMODULE GetProcBase(HANDLE hProcess) { HMODULE hModules[1024]; DWORD cbNeeded;
if (EnumProcessModules(hProcess, hModules, sizeof(hModules), &cbNeeded)) { return hModules[0]; } return NULL; }
#define FILENAME_OFF 0x772F9 BYTE filenameOriBytes[13] = {"@contest.txt"}; BYTE filenameBytes[13] = {0, };
#define PATCH_FILENAME_OFF 0xCB3C BYTE patchFilenameOriBytes[1] = { 0x8D }; BYTE patchFilenameBytes[1] = { 0x8B };
#define FLAG_OFF 0x772E8 BYTE flagOriBytes[17] = { "Ecatchmeifyoucan" }; BYTE flagBytes[17] = { "\0catchmeifyoucan" };
#define PATCH_FLAG_OFF 0xD6D0 BYTE patchFlagOriBytes[16] = {0x48, 0x8D, 0x05, 0x99, 0xE2, 0xFF, 0xFF, 0xFF, 0xE0, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC, 0xCC};
BYTE patchFlagBytes[16] = {0x52, 0x8A, 0x44, 0x11, 0xFF, 0x41, 0x88, 0x44, 0x10, 0xFF, 0xFF, 0xCA, 0x75, 0xF3, 0x5A, 0xC3};
void crack(HANDLE hProcess, HANDLE hThread, UINT64 procBase) { PVOID remoteBuffer = NULL; DWORD newProtect; DWORD oldProtect; while (TRUE) { char op = '\n'; puts("[m] modify file path"); puts("[r] reset"); puts("[q] quit"); printf("input: "); while (op == '\n') op = getchar(); switch (op) { case 'm': if (remoteBuffer == NULL) { remoteBuffer = VirtualAllocEx(hProcess, NULL, MAX_LEN, MEM_COMMIT, PAGE_READWRITE); if (remoteBuffer == NULL) { puts("failed!"); break; } } puts("file path:"); char path[MAX_LEN]; scanf_s("%255s", path); WriteProcessMemory(hProcess, remoteBuffer, path, MAX_LEN, NULL); SuspendThread(hThread); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + FILENAME_OFF & 0x1000), 0x1000, newProtect, &oldProtect); *(UINT64*)(filenameBytes + 1) = (UINT64)remoteBuffer; WriteProcessMemory(hProcess, (LPVOID)(procBase + FILENAME_OFF), filenameBytes, sizeof(filenameBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + FILENAME_OFF & 0x1000), 0x1000, oldProtect, &newProtect); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FILENAME_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + PATCH_FILENAME_OFF), patchFilenameBytes, sizeof(patchFilenameBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FILENAME_OFF & 0x1000), 0x1000, oldProtect, &newProtect); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + FLAG_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + FLAG_OFF), flagBytes, sizeof(flagBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + FLAG_OFF & 0x1000), 0x1000, oldProtect, &newProtect); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FLAG_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + PATCH_FLAG_OFF), patchFlagBytes, sizeof(patchFlagBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FLAG_OFF & 0x1000), 0x1000, oldProtect, &newProtect); ResumeThread(hThread); break; case 'r': if (remoteBuffer == NULL) { break; } SuspendThread(hThread); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + FILENAME_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + FILENAME_OFF), filenameOriBytes, sizeof(filenameOriBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + FILENAME_OFF & 0x1000), 0x1000, oldProtect, &newProtect); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FILENAME_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + PATCH_FILENAME_OFF), patchFilenameOriBytes, sizeof(patchFilenameOriBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FILENAME_OFF & 0x1000), 0x1000, oldProtect, &newProtect); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + FLAG_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + FLAG_OFF), flagOriBytes, sizeof(flagOriBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + FLAG_OFF & 0x1000), 0x1000, oldProtect, &newProtect); newProtect = PAGE_READWRITE; VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FLAG_OFF & 0x1000), 0x1000, newProtect, &oldProtect); WriteProcessMemory(hProcess, (LPVOID)(procBase + PATCH_FLAG_OFF), patchFlagOriBytes, sizeof(patchFlagOriBytes), NULL); VirtualProtectEx(hProcess, (LPVOID)(procBase + PATCH_FLAG_OFF & 0x1000), 0x1000, oldProtect, &newProtect); VirtualFreeEx(hProcess, remoteBuffer, 0, MEM_RELEASE); remoteBuffer = NULL; ResumeThread(hThread); break; case 'q': return; break; } } }
int main() { DWORD dwPID = 0; DWORD dwTID = 0; HANDLE hProcess = NULL; HANDLE hThread = NULL; HMODULE hModule = NULL;
dwPID = GetDwPidByName(PROC_NAME); if (dwPID == 0) return -1;
hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwPID); if (hProcess == NULL) return -1;
dwTID = GetMainThreadId(dwPID); if (dwTID == 0) { CloseHandle(hProcess); return -1; }
hThread = OpenThread(THREAD_ALL_ACCESS, FALSE, dwTID); if (hThread == NULL) { CloseHandle(hProcess); return -1; }
hModule = GetProcBase(hProcess); if (hModule == NULL) { CloseHandle(hProcess); CloseHandle(hThread); return -1; }
crack(hProcess, hThread, (UINT64)hModule);
system("pause"); CloseHandle(hProcess); CloseHandle(hThread); return 0; }
|