Stack O. Members。
根据我的注册会计师日志,自8月18日以来我就遇到过这个问题,但是我有一些个人情况让我分心。但是,一旦我回来,我注意到所有我的index.php文件已被还原。
我的意思是什么?好吧,我运行一个名为FraudBuster的Cloaker脚本来隐藏我的网站。我把它安装在我的主域上,并且我的所有附加域都必须使用脚本才能通过index.php执行。我从四月起就开始工作了,我无处可寻。还应该知道我为所有附加站点使用wordpress。最近唯一添加的网站是我女朋友的时尚博客,这是我当时唯一可以重新引导注意力的网站。我的注册会计师斗篷网站几乎已经确定并且忘记了,我已经将这些设置好几个月而没有触及它们,他们似乎只是编辑自己并继续这样做。
在安装我的cloaker的正常程序中,index.php将如下所示:
/home/xxxxxx/public_html/tftbiz/index.php
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
ob_start();
//ADVANCED fraudbuster TEMPLATE
//ONLY USE WHEN YOU KNOW WHAT YOUR DOING
//define critical variables - dont change!
define('APPLOC','/home/thealey9/public_html/');
$_GET['clid'] = 'sycj8o7';
//load the fraudbuster logic
include(APPLOC.'go.php');
//decide what to do
if ( $isItSafe ) {
//ok - alls safe - do your stuff
fraudBuster();
}
//include your safe landing page below this comment
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
?>
在那里,我点击保存,它保存,然后在验证重定向时我得到这意味着它有效(编辑出URL的例子):
[{“url”:“good”,“status”:302},{“url”:“good redirect”,“status”:200}]
到目前为止这么好吗?现在问题在于:
一旦我真正访问了所说的网站,它就不会重定向,而是会加载一段时间然后只是在网站上进行,就像脚本从未存在过一样。我再次访问我的cPanel,再一次,对我来说是愤怒的,恢复到这段代码:
<?php
/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
在那里,好像我从未放过剧本。似乎一旦它登录WP,似乎有一些东西可以修改我的所有域上的索引,安装WP就像这样。我的GF只安装了一个名为“社交媒体羽毛”的插件,这就是我所知道的。所有网站都正常运作。这就像是允许删除此代码作为一种安全措施,这是奇怪的,因为我说,这几个月没有任何问题。
请与我分享您的惊人知识。 ):一个没有经验的服务器人会永远欣赏它。