英文:
WordPress error because .mo files inside WP-Include
问题
我之前的WordPress安装出了问题,实际上问题已经解决了,但我仍然找不到为什么会出现这个问题的答案。
简而言之,我的问题可以通过从根目录的index.php中移除@include来解决,这个@include文件是一个.mo扩展名的文件,这个文件以随机的文件名存储在wp-include中,比如.2e949ed0.mo。
这是恶意软件吗?因为我删除它后,问题立即解决了。
英文:
I had a problem with my previous wordpress installation, actually the problem has been solved, but I still can't find an answer why this problem appears
so long story short, my problem can be solved by removing @include from index.php in the root, the file @include is a .mo extension file, the file is stored hidden in wp-include (random filename like .2e949ed0.mo)
is it malware or something? because after I delete it, the problem is solved immediately.
答案1
得分: 0
是的,.mo 文件包含恶意软件,并且从 index.php 和其他随机文件中的随机路径和文件名调用,包含在随机注释中,例如:
/*ba725*/
@include ("/home/xxx/public_html/wp-content/xxx/.e5eb56db.mo");
/*ba725*/
您是否在使用原始主题?如果是,能否指出主题的名称并列出正在使用的插件?
英文:
Yes, the .mo contains malware and is called from index.php and other random files on a random path and filename, included in a random comment such as :
/*ba725*/
@include ("/home/xxx/public_html/wp-content/xxx/.e5eb56db.mo");
/*ba725*/
Are you using an original theme? If yes, can you indicate the name and make a list of plugins in use?
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论