摘要: 入门教程 网上教程很多,随便帖一个 https://zhuanlan.zhihu.com/p/401363280 遇到的难点 辨识hashcat的 -m 参数 参考 https://hashcat.net/wiki/doku.php?id=example_hashes 比如我的是符合这个格式 has 阅读全文
posted @ 2024-02-08 22:30 _离水的鱼 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 通过调用栈逆推定位到是__Mtx_lock失败后导致调用std::Throw_C_errorVS崩溃栈解析位置是_Lock_attempt_small确定崩溃位置其实是在_Lk0.lock()内分析std::mutex,进入_Mutex_Base最后确定是_Check_C_Return(_Mtx_l 阅读全文
posted @ 2021-12-28 20:55 _离水的鱼 阅读(739) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fl2011sx/article/details/119452341 阅读全文
posted @ 2021-12-27 19:37 _离水的鱼 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 使用dumpbin工具 工具的一般路径为 X:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin 使用dumpbin的方法 dumpbin /HEADERS 库文件|findstr machine 阅读全文
posted @ 2020-09-22 09:27 _离水的鱼 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: 使用vs2017编写不带console窗口程序时,使用printf打印输出信息 1、在vs中打开你的解决方案。 2、鼠标移动到你的项目名称上,点击鼠标右键,再点击属性,此刻会此项目的属性页。 3、在配置属性中,找到生成事件,在找到后期生成事件。 4、在命令行的右边空白处添加“editbin /SUB 阅读全文
posted @ 2019-12-03 11:17 _离水的鱼 阅读(1982) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yzf279533105/article/details/77658367 https://stackoverflow.com/questions/56814269/boost-installation-missing-argument-global-se 阅读全文
posted @ 2019-11-21 14:00 _离水的鱼 阅读(274) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh-cn/visualstudio/ide/walkthrough-creating-a-code-snippet?view=vs-2015&redirectedfrom=MSDN https://blog.csdn.net/qq_400781 阅读全文
posted @ 2019-10-24 15:28 _离水的鱼 阅读(1818) 评论(0) 推荐(0) 编辑
摘要: 因为没有 #include <windows.h> 有些头文件是在windows.h被include的,如果自己直接include那些头文件就会报这个错误 阅读全文
posted @ 2019-10-15 14:55 _离水的鱼 阅读(725) 评论(0) 推荐(0) 编辑
摘要: 表现为明明loadLibrary,GetProcAddress就是拿不到地址 原因是C语言的函数使用C++编译时需要加上extern "C” 阅读全文
posted @ 2019-09-23 20:33 _离水的鱼 阅读(983) 评论(0) 推荐(0) 编辑
摘要: 以读的方式读取二进制文件,发现存在字节丢失的情况 改成 以二进制的方式读取 原因: fread以文本形式读取对0x0D 0x0A会变成0x0A 【C语言】fwrite 写如0X0A时,自动添加0X0D的解决方法 回车换行问题0x0D和0x0A 阅读全文
posted @ 2019-09-12 16:19 _离水的鱼 阅读(319) 评论(0) 推荐(1) 编辑