摘要: 基于缓冲区溢出的HelloWorld CPP代码 #include "stdafx.h" void HelloWorld() { printf("Hello World"); getchar(); } void Fun() { int arr[5] = {1,2,3,4,5}; arr[6] = ( 阅读全文
posted @ 2021-08-23 18:14 Ybitsec 阅读(191) 评论(0) 推荐(0) 编辑
摘要: IF多分支逆向分析 案例 CPP代码 #include "stdafx.h" int cnt; void Function(int x, int y) { if (x == 1) { cnt = 1; } else if (y == 1) { cnt = 1; } else { cnt = 0; } 阅读全文
posted @ 2021-08-23 02:45 Ybitsec 阅读(67) 评论(0) 推荐(0) 编辑