上一页 1 2 3 4 5 6 7 8 ··· 62 下一页
摘要: https://docs.microsoft.com/en-us/cpp/cpp/string-and-character-literals-cpp?view=vs-2017 C++ supports various string and character types, and provides 阅读全文
posted @ 2019-02-26 22:57 瓜蛋 阅读(1174) 评论(1) 推荐(0) 编辑
摘要: 下面这行代码 当在Debug状态时,代码没总理。当切换到Release状态时这整句代码是不执行的 说明assert内部的表达式 必须为判断,而不能为一个动作。否则这个动作在Release的版本中是无法执行的。 阅读全文
posted @ 2019-01-28 21:47 瓜蛋 阅读(600) 评论(0) 推荐(0) 编辑
摘要: 将代码回到hash为1fbcb7ea3b43df60c639875d2bb68e20b451059e的版本 git checkout 1fbcb7ea3b43df60c639875d2bb68e20b451059e 用下面代码 你还可以将指定版本设置为一个分支 git branch test2 1f 阅读全文
posted @ 2018-12-10 23:27 瓜蛋 阅读(4676) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-12-08 14:37 瓜蛋 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 假如有这样一个指针 int * idx16 那么要想在调试里面显示为数组并且要显示的数组元素个数为24的话,则要写成idx16,24 如下图 阅读全文
posted @ 2018-12-08 00:09 瓜蛋 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: 3.5 – Visibility Rules Lua is a lexically scoped language. The scope of a local variable begins at the first statement after its declaration and lasts 阅读全文
posted @ 2018-12-01 15:19 瓜蛋 阅读(1425) 评论(0) 推荐(0) 编辑
摘要: SQL Server 2005 introduced the APPLY operator, which is like a join clause and it allows joining between two table expressions i.e. joining a left/out 阅读全文
posted @ 2018-12-01 09:43 瓜蛋 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 在IsDebuggerPresent下断,步入得到如下代码: 在fs:[18]下断点得出 其中fs:[18] =7EFDD000 eax+30就是这里 再来看看7EFDE000里的值 ds:[eax+2] = 1 .所以是调试状态 那么c++一行代码直接可以修改这个值,使IsDebuggerPres 阅读全文
posted @ 2018-10-08 21:27 瓜蛋 阅读(942) 评论(0) 推荐(0) 编辑
摘要: update a set a.KSMC = b.name from JC_KSXXB a inner join chisdb_ymyy..zd_unit_code b on a.KSDM = b.code 阅读全文
posted @ 2018-10-06 17:27 瓜蛋 阅读(40300) 评论(0) 推荐(4) 编辑
摘要: 以下为了避免插件干扰,故采用x64dbg原版进行分析。 首先我通过检测到调试器的弹窗进行栈回溯,定位到该关键点:CALL eax 由于才接触Vmp,所以是把各个保护拆分开来进行的分析,会比较简单一些,不过全保护其实也就是凑在一起罢了,只要注意顺序就行啦。 本帖只是分析基础保护反调试反虚拟机等,不涉及 阅读全文
posted @ 2018-10-03 23:29 瓜蛋 阅读(1006) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 62 下一页