
反汇编
Coding_Reading
待我编码有成 娶你为妻可好
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
一次函数调用过程对堆栈的逆向分析之旅
阅读需要有一点汇编基础,源代码如下 #include "stdafx.h" int plus(int x, int y) { int z = 2; return x + y + z; } int main() { int c = plus(3, 4); return 0; } 用VS的反汇编找到main函数的地址0xF216E0 将程序载入OD,到达0xF原创 2016-07-05 14:55:03 · 2126 阅读 · 0 评论 -
利用缓冲区溢出来执行函数
首先用代码 #include "stdafx.h" void overFlow() { while (1) { printf( "over flow!\n"); } getchar(); } int main() { int a[3] = { 0 }; return 0; } 用VS查看反汇编代码 a[2]对应的地址为EBP-C 学过汇编我原创 2016-07-05 17:13:53 · 1249 阅读 · 0 评论 -
IDA反汇编学习-转
IDA反汇编学习转载 2016-12-12 11:44:01 · 1311 阅读 · 0 评论