x64dbg复合判断的条件脚本 怎么写?
比如这句吧:00007FF67C006606 | 0F84 30010000 | je 7FF67C00673C一个cmp语句这么写: cmp rip, 00007FF67C006606
两个呢?
比如判断 当前00007FF67C006606 行,当前分支实现了!并且 又是一个用户领空! cmp dis.branchexec(RIP), 1and cmp mod.user(RIP), 1
cmp dis.branchexec(RIP), 1&&cmp mod.user(RIP), 1
(cmp dis.branchexec(RIP), 1)&&(cmp mod.user(RIP), 1)这样写就报错了! cmp (dis.branchexec(RIP) && mod.user(RIP)), 1
页:
[1]