编码 php 文件的最安全方法
我遇到过许多方法和无数的应用程序来编码 php 文件,例如 zend encoder 和 iconcube,以及 php lockit 等应用程序。
我的问题是,确保我的编码文件不会被解码的最有效方法是什么。
符合以下标准者优先: 不需要额外的 php 插件。 轻量级,解密时无需占用大量资源 免费且易于使用 通过Windows平台编码(我不希望在主服务器中对文件进行编码)
I came across many ways and countless number of applications to encode php files, as in zend encoder and iconcube, as well as applications like php lockit.
my question is, what is the most effective way to ensure my encoded files wont be decoded.
the following criteria are a plus:
no need for extra plugins for php.
lightweight and no extensive resource power during decryption
free and easy to use
encoding via windows platform (i do not wish to encode files in the main server)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我见过很多像这样混淆的 Wordpress 恶意软件:
但这绝对不能确保您的文件无法被解码。充其量,它可能会让你的程序更加“抵抗白痴”。 (我不敢说“白痴证明”。)
如果人们可以逆转 Stuxnet,他们就可以逆转你的 PHP,你知道吗?但是,如果您只是想隐藏代码以防止随意阅读,那么上面的可能会有所帮助。
I've seen a lot of Wordpress malware obfuscated like this:
This definitely won't ensure that your files can't be decoded, though. At best, it may make your program more "moron resistant." (I dare not say "moron proof".)
If people out there can reverse Stuxnet, they can reverse your PHP, you know? But if you're just trying to hide your code from casual reading, the above might be helpful.