MZ_li 发表于 2024-7-3 14:48:54

应付那些傻瓜式反编译可以

chslwj521 发表于 2024-7-3 16:05:14

厉害的很:lol

你有种再说一遍 发表于 2024-7-3 17:37:18

第一次知道and代替if还是在老迈的迷你工具箱

自贡黄明儒 发表于 2024-7-3 19:50:48

黄翔 发表于 2024-7-3 10:42
按照楼主的意思, and 只能替代 (if testexpr thenexpr ) 情况
不能替换(if testexpr thenexpr elseexpr)

(or   (and a b)c)

自贡黄明儒 发表于 2024-7-3 19:57:04

自贡黄明儒 发表于 2024-7-3 19:50
(or   (and a b)c)

(or (and a (progn b t)) c)

谢雷锋 发表于 2024-7-5 17:56:29

写多了后,基本只用and和cond。and可避免程序出错

jun470 发表于 2024-11-6 17:27:05

我想用这个对抗反编译,是能使编译出错。

但是我又写了注册机,我注册机手搓的,就只是算个机器码简单运算了,这样别人反编译没拿到源程序,但是拿到注册代码,注册机泄露了。菜鸟来的,不知怎么应对。

kozmosovia 发表于 2024-11-6 23:54:25

用猫的程序把代码混淆增大了,拿到源代码,也没时间精力转回去最简单的源代码

llsheng_73 发表于 2024-11-7 10:48:17

黄翔 发表于 2024-7-3 10:06
都能反编译出来了.还不会加progn吗?

这点完全可以放心,绝大多数人不知道该加在哪里...

llsheng_73 发表于 2024-11-7 10:53:57

黄翔 发表于 2024-7-3 10:42
按照楼主的意思, and 只能替代 (if testexpr thenexpr ) 情况
不能替换(if testexpr thenexpr elseexpr)
(and ...
   (or(and testexpr(progn thenexpr t))
    (progn elseexpr t))
   ...)
页: 1 2 [3] 4
查看完整版本: 【原创】and函数的深入研究 用and代替if