摘要:
今天通过调试ollydbg的F2打cc断点功能来演示如何查找程序的消息回调函数 其实原理很简单,就是利用RegisterClass获取消息回调函数 ollydbg的版本使用的是110 下载地址 1. [官网](http://www.ollydbg.net/download//odbg110.zip) 阅读全文
摘要:
一般说使用umcompyle6 *.pyc命令就可以,但是也会遇到反编译不出来的情况, core.pyc 这个文件反编译出来的结果是 # uncompyle6 version 3.8.0 # Python bytecode 3.7.0 (3394) # Decompiled from: Python 阅读全文
摘要:
对象参数传参时 示例代码 #include <stdio.h> #include <string.h> class Person { public: Person() { name = NULL;//无参构造函数,初始化指针 } Person(const Person& obj) { // 注: 阅读全文
摘要:
代码案例 #include <stdio.h> class Sofa { public: Sofa() { color = 2; } virtual ~Sofa() { // 沙发类虚析构函数 printf("virtual ~Sofa()\n"); } virtual int getColor() 阅读全文
摘要:
release vs 在汇编中堆对象如何确定构造函数的范围 #include <stdio.h> class Person { public: Person() { age = 20; } virtual int getAge(){ return this->age; } int age; }; i 阅读全文
摘要:
判断构造函数 .text:0000000140001030 mov [rsp+arg_8], rdx .text:0000000140001035 mov [rsp+arg_0], ecx .text:0000000140001039 sub rsp, 48h .text:0000000140001 阅读全文
摘要:
工具准备 Charles (v4.6.2) clash for windows (0.16.2.0) Proxifier (Version 3.42, 2018.08.31) Charles 安装证书及配置http&&https抓包 配置二次代理 设置Charles二次代理,菜单栏点击【Proxy】 阅读全文
摘要:
安装证书 安装好程序以后打开,配置Charles证书;选择help——SSL Proxying——install Charles Root Certificate 会出现证书安装的信息,我这边已经安装成功,第一次可能需要安装 将证书安装在“受信任的根证书颁发机构”,这步很重要 最后提示导入成功,出现 阅读全文
摘要:
其实可能造成标准句柄无效的情况我只见过两种,一种是在自身进程中调用SetStdHandle,另外一种是在创建子进程是设置启动信息属性 SetStdHandle SetStdHandle(STD_INPUT_HANDLE,-1) SetStdHandle(STD_OUTPUT_HANDLE,-1) S 阅读全文