摘要: 逆向分析之if语句与循环语句的分析 前言 本次我们要介绍if语句,for循环编译后的反汇编内容,以C/C++编写的可执行程序为例进行分析 一只Demo 首先是一只Demo,是我们本次分析对象的源码 #include <stdio.h> void if_demo(int v) { if (v > 5) printf("v > 5\n") 阅读全文
posted @ 2025-09-19 15:32 VirboxProtector 阅读(12) 评论(0) 推荐(0)