随笔分类 -  Windows

摘要:Main.cpp extern "C" void PopCalculator(); extern "C" void _INT3(); int main() { _INT3(); PopCalculator(); return 0; } Code.asm PopCalculator proto _IN 阅读全文
posted @ 2022-05-22 10:24 HyperVS
摘要:Fastio.h 1 #pragma once 2 #include "Header.h" 3 4 5 BOOLEAN FastIoCheckIfPossible( 6 _In_ struct _FILE_OBJECT* FileObject, 7 _In_ PLARGE_INTEGER FileO 阅读全文
posted @ 2021-12-03 15:59 HyperVS
摘要:#include <windows.h> int main() { DWORD dwKernel32 = 0; _asm { mov eax, fs:[0x30] // peb mov eax, [eax+0x0C] // ldr mov eax, [eax+0x1C] // Module List 阅读全文
posted @ 2021-10-31 16:33 HyperVS