摘要:
局部静态变量的初始化观测//全局变量int global=0x11111;int main(int argc, char* argv[]){ //局部变量 int temp=0x160; global=global+temp; return 0;}6: int global=0x111111;7: 阅读全文
posted @ 2024-10-18 18:47
风花赏秋月
阅读(35)
评论(0)
推荐(0)
摘要:
理解并观测函数调用母函数做什么,子函数做什么cdecl调用约定#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int __cdecl method(int x, int y){ return x + y;}int main(){ __asm mov 阅读全文
posted @ 2024-10-18 09:16
风花赏秋月
阅读(216)
评论(0)
推荐(0)
摘要:
If else 语句逆向分析#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int main(int argc, char* argv[]) { int sum = 0; for (int i = 0; i <= argc; i++) { sum + 阅读全文
posted @ 2024-10-18 09:13
风花赏秋月
阅读(70)
评论(0)
推荐(0)
摘要:
switch语句逆向分析有序小于3时代码:#include "stdafx.h"void MySwitch(int x){ switch(x) { case 1: printf("num is 1\n"); break; case 2: printf("num is 2\n"); break; ca 阅读全文
posted @ 2024-10-18 09:10
风花赏秋月
阅读(41)
评论(0)
推荐(0)
浙公网安备 33010602011771号