摘要: printf函数 printf("%d", num); 汇编代码调用过程: 0071183F mov eax,dword ptr [num] 00711842 push eax 00711843 push offset string "%d" (0717B30h) 00711848 call _pr 阅读全文
posted @ 2020-05-01 16:46 10nnn4R 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 概述 学习汇编的意义 开发时调试 逆向时的代码阅读 某些特殊技术的使用(shellcode,壳) 16/32/64汇编的区别 栈的作用: 存储数据 保存寄存器环境 传递参数 lea eax,dword ptr ss:[esp-4] 将 ss:[esp-4] 传入eax(传址) xchg eax,dw 阅读全文
posted @ 2020-05-01 14:48 10nnn4R 阅读(202) 评论(0) 推荐(0) 编辑