摘要: IF-ELSE逆向分析 案例 CPP代码: #include "stdafx.h" int max_num; void Function(int x, int y) { if (x > y) { max_num = x; } else { max_num = y; } } int main(int 阅读全文
posted @ 2021-08-22 14:35 Ybitsec 阅读(70) 评论(0) 推荐(0) 编辑