上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
摘要: 今天通过调试ollydbg的F2打cc断点功能来演示如何查找程序的消息回调函数 其实原理很简单,就是利用RegisterClass获取消息回调函数 ollydbg的版本使用的是110 下载地址 1. [官网](http://www.ollydbg.net/download//odbg110.zip) 阅读全文
posted @ 2022-06-24 00:08 乘舟凉 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 一般说使用umcompyle6 *.pyc命令就可以,但是也会遇到反编译不出来的情况, core.pyc 这个文件反编译出来的结果是 # uncompyle6 version 3.8.0 # Python bytecode 3.7.0 (3394) # Decompiled from: Python 阅读全文
posted @ 2022-05-08 20:24 乘舟凉 阅读(6799) 评论(0) 推荐(0) 编辑
摘要: 对象参数传参时 ​ 示例代码 #include <stdio.h> #include <string.h> class Person { public: Person() { name = NULL;//无参构造函数,初始化指针 } Person(const Person& obj) { // 注: 阅读全文
posted @ 2022-04-22 20:53 乘舟凉 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 代码案例 #include <stdio.h> class Sofa { public: Sofa() { color = 2; } virtual ~Sofa() { // 沙发类虚析构函数 printf("virtual ~Sofa()\n"); } virtual int getColor() 阅读全文
posted @ 2022-04-17 16:49 乘舟凉 阅读(49) 评论(0) 推荐(0) 编辑
摘要: release vs 在汇编中堆对象如何确定构造函数的范围 #include <stdio.h> class Person { public: Person() { age = 20; } virtual int getAge(){ return this->age; } int age; }; i 阅读全文
posted @ 2022-04-11 21:10 乘舟凉 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 判断构造函数 .text:0000000140001030 mov [rsp+arg_8], rdx .text:0000000140001035 mov [rsp+arg_0], ecx .text:0000000140001039 sub rsp, 48h .text:0000000140001 阅读全文
posted @ 2022-04-08 23:26 乘舟凉 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 工具准备 Charles (v4.6.2) clash for windows (0.16.2.0) Proxifier (Version 3.42, 2018.08.31) Charles 安装证书及配置http&&https抓包 配置二次代理 设置Charles二次代理,菜单栏点击【Proxy】 阅读全文
posted @ 2022-04-08 00:33 乘舟凉 阅读(781) 评论(0) 推荐(0) 编辑
摘要: 安装证书 安装好程序以后打开,配置Charles证书;选择help——SSL Proxying——install Charles Root Certificate 会出现证书安装的信息,我这边已经安装成功,第一次可能需要安装 将证书安装在“受信任的根证书颁发机构”,这步很重要 最后提示导入成功,出现 阅读全文
posted @ 2022-04-07 10:59 乘舟凉 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 其实可能造成标准句柄无效的情况我只见过两种,一种是在自身进程中调用SetStdHandle,另外一种是在创建子进程是设置启动信息属性 SetStdHandle SetStdHandle(STD_INPUT_HANDLE,-1) SetStdHandle(STD_OUTPUT_HANDLE,-1) S 阅读全文
posted @ 2022-04-04 19:11 乘舟凉 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 代码示例 printf("\033[4;31;42m color!!! \033[m Hello \n"); 输出结果 下面介绍各个字符的组成含义 \033[4;31;42m 表示彩色字符的开始,后面的字符都会被彩色打印 中括号的边的三个数字分别代表 打印格式、字体颜色 、 背景色,下面介绍它们的取 阅读全文
posted @ 2022-04-02 11:11 乘舟凉 阅读(523) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页