⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memorytoolz.inc

📁 MemoryToolz 0.1 example written in assembly use NtSystemDebugControl, veery good to study
💻 INC
字号:

include windows.inc
include macros.asm
include msvcrt.inc
include kernel32.inc
include user32.inc
include comctl32.inc

includelib kernel32.lib
includelib msvcrt.lib
includelib user32.lib
includelib comctl32.lib


.const
IDD_DLG equ 1000
IDC_MEMORY equ 1001
IDC_ADDRESS equ 1002
IDC_CB equ 1003
IDC_PRINT equ 1006
IDC_INFO equ 1007

PAGE_SIZE equ 1000h


DialogProc proto :HWND, :UINT, :WPARAM, :LPARAM
MemoryWindowProc proto :HWND, :UINT, :WPARAM, :LPARAM
PrintVirtualMemory proto :DWORD, :DWORD

.data
fl dd 3232532,43636,346346,34238,323
ApplicationName db	"Memory Toolz 0.1", 0
IconName db "ICON", 0
fmt_ulong		db	"0x%08x : ", 0
fmt_hex			db	"%02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x ", 9, 0
chardump		db	"................................ !",'"',"#$%&'()*+,-./0123456789"
db					":;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklm"
db					"nopqrstuvwxyz{|}~...................................."
db					"....................................................."
db					"........................................"

.data?
hInstance dd ?
HwndMemory dd ?
HwndInfo dd ?
WndPrevProc dd ?
gVirtualAddress dd ?
gBlockSize dd ?



⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -