摘要: 16进制编辑器打开pchunter64.exe 搜索字节序列:48 8B 5C 24 50 33 C9 E8 B5 更改48 8B 5C 24 50为BB 7F E6 85 F4 即:mov rbx,[rsp+50]更改为mov ebx,F485E67F,保存更改。 阅读全文
posted @ 2023-08-15 22:27 mibrcogu 阅读(1270) 评论(1) 推荐(0)
摘要: 用于测试的C++源码: int* f(int *a) { *a=10; a=0; return a; } int main(int argc, char **argv) { int a = 1, *p = &a; f(p); } MS Windows x64, 汇编代码: Dump of assem 阅读全文
posted @ 2023-08-11 23:08 mibrcogu 阅读(48) 评论(0) 推荐(0)
摘要: #include <iostream> #include <vector> #include <algorithm> //此头文件是算法库的一部分,for_each函数模板就定义于这个头文件 #include <boost/type_index.hpp> //boost::typeindex::ty 阅读全文
posted @ 2023-08-05 23:55 mibrcogu 阅读(1226) 评论(0) 推荐(0)