服务器预加随机string到请求的URL?

今天我注意到,我无法一直加载网站,所以我决定查看服务器上生成的日志文件。 令我惊奇的是,几乎所有要求的文件都修改了它们的path,而不是由网站的php代码组成。 该网站托pipe与GoDaddy。

请求/stories/rss改为VOadK/stories/rssVgpUU/stories/rss 。 开始的随机字符随着每个请求而变化。 在我10年的networking开发中,我从来没有见过这样的事情,所以我完全丧失了做什么。

这听起来像一个服务器/ Apache的问题? 我已经追溯到昨天上午5点左右,

 2009-11-30 05:07:06 -07:00 --- error: Uncaught Kohana_404_Exception: The page you requested, VUPWT/forums, could not be found. in file system/core/Kohana.php on line 841 2009-11-30 05:08:38 -07:00 --- error: Uncaught Kohana_404_Exception: The page you requested, YLPQR/css/reset.css, could not be found. in file system/core/Kohana.php on line 841 

注意随机path。 在日志中的这些行之前,我看到了一个名为4273uaqa.gif的文件的请求。 我还没有文件,甚至远程类似于这个,所以我GOOGLE了。 有趣的是 – 引用同一个文件,包括随机的URL段!

这让我想知道如果我是共享服务器黑客的受害者。 我也使用.htaccess,它试图重写url,所以这可能是相关的:

 # Turn on URL rewriting RewriteEngine On # Installation directory RewriteBase / # Protect application and system files from being viewed RewriteRule ^(application|modules|system) - [F,L] # Allow any files or directories that exist to be displayed directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Rewrite all other URLs to index.php/URL RewriteRule .* index.php?kohana_uri=$0 [PT,QSA,L] 

思考?

我会说你被黑了。 进一步的searchstring的search会产生可疑的结果。

这个原因尚不清楚(“正式”),但是获得一个静态的ipaddress显然解决了这个问题。