查找 IonCube PHP 文件
pSek 服务器托管公司无缘无故地安装了 54 个 PHP 扩展,在浏览不需要的扩展列表时,我注意到了 IonCube,我想快速删除它。有什么好方法可以查明我们是否有用它加密的 PHP 文件?
The pSek server hosting company installed 54 PHP extensions for no reason, and while going through the list of unneeded extensions I noticed IonCube, which I want to get rid of quickly. What's a good way to find out if we have any PHP files encrypted with it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您没有自己加密它们,那么您不会有任何加密文件,但 IonCube 加密文件应该在每个文件顶部附近的某个位置有
if(!extension_loaded('ionCube Loader'))
。If you haven't encrypted them yourself, then you won't have any encrypted files, but IonCube encrypted files should have
if(!extension_loaded('ionCube Loader'))
somewhere near the top of every file.