<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.7" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Random numbers edits on wikis</title>
	<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 06 Oct 2008 19:33:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>

	<item>
		<title>by: Code Codex</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-25477</link>
		<pubDate>Fri, 21 Jul 2006 14:16:22 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-25477</guid>
					<description>Thanks Will, that seems to be working on my site!

These numbers were driving me crazy.  I still have no clue what they are...</description>
		<content:encoded><![CDATA[<p>Thanks Will, that seems to be working on my site!</p>
<p>These numbers were driving me crazy.  I still have no clue what they are&#8230;
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Will</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-23833</link>
		<pubDate>Sun, 09 Jul 2006 20:09:25 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-23833</guid>
					<description>It turns out I got too clever, trying to use "^" and "$" to identify the beginnings and endings of lines. That didn't catch the numerical spam. Also I didn't previously know about "{m,n}" as a regex way to specify a number of repetitions. Here's what I've got now: "[0-9]{20,50}"</description>
		<content:encoded><![CDATA[<p>It turns out I got too clever, trying to use &#8220;^&#8221; and &#8220;$&#8221; to identify the beginnings and endings of lines. That didn&#8217;t catch the numerical spam. Also I didn&#8217;t previously know about &#8220;{m,n}&#8221; as a regex way to specify a number of repetitions. Here&#8217;s what I&#8217;ve got now: &#8220;[0-9]{20,50}&#8221;
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Will</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-23705</link>
		<pubDate>Sat, 08 Jul 2006 18:59:23 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-23705</guid>
					<description>I've also been seeing a lot of this on a Mediawiki installation. Laura, thanks for the info about $wgEnableSorbs. Here is what I just added to my $wgSpamRegex, I don't yet know if it will catch these things:
"^\s*[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]+\s*$".
I made this the last item (right before the "/i" line), so I added "&#124;" to the end of the previous regex to "or" this in with the others. The period at the end is a string concatenation. I found info about PHP regexes at http://weblogtoolscollection.com/regex/regex.php.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve also been seeing a lot of this on a Mediawiki installation. Laura, thanks for the info about $wgEnableSorbs. Here is what I just added to my $wgSpamRegex, I don&#8217;t yet know if it will catch these things:<br />
&#8220;^\s*[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]+\s*$&#8221;.<br />
I made this the last item (right before the &#8220;/i&#8221; line), so I added &#8220;|&#8221; to the end of the previous regex to &#8220;or&#8221; this in with the others. The period at the end is a string concatenation. I found info about PHP regexes at <a href="http://weblogtoolscollection.com/regex/regex.php." rel="nofollow">http://weblogtoolscollection.com/regex/regex.php.</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Laura Q</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-22278</link>
		<pubDate>Fri, 30 Jun 2006 17:58:13 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-22278</guid>
					<description>Yeah, we've been getting a *lot* of these.  Numeric strings of either 18 or 20 characters long; often but not always creating a new page.

A friend speculates that they are a malfunctioning spambot. 

We've using MediaWiki software, and just enabled proxy blocking ($wgEnableSorbs) and I just added $wgSpamRegex which blocks edits that include the prohibited matched text.  I think I'm going to add 16-digit numeric strings to the $wgSpamRegex and see if that helps.</description>
		<content:encoded><![CDATA[<p>Yeah, we&#8217;ve been getting a *lot* of these.  Numeric strings of either 18 or 20 characters long; often but not always creating a new page.</p>
<p>A friend speculates that they are a malfunctioning spambot. </p>
<p>We&#8217;ve using MediaWiki software, and just enabled proxy blocking ($wgEnableSorbs) and I just added $wgSpamRegex which blocks edits that include the prohibited matched text.  I think I&#8217;m going to add 16-digit numeric strings to the $wgSpamRegex and see if that helps.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Joe</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20534</link>
		<pubDate>Sun, 25 Jun 2006 04:19:49 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20534</guid>
					<description>Recently I have seen similar edits a lot.  It is not a recent invention though this pattern is new and it seems more common lately.  On my honeypot wiki, one was done as page section edit of the last section on the page and only added 47614383212899288105565.  What seems most likely to me is testing for unmonitored wikis like Chris said.  I have yet to see any proof of it though.  I am really interested to find out if there are any hits later to those pages that seem unusual, especially a search engine referrer looking for that string of numbers.</description>
		<content:encoded><![CDATA[<p>Recently I have seen similar edits a lot.  It is not a recent invention though this pattern is new and it seems more common lately.  On my honeypot wiki, one was done as page section edit of the last section on the page and only added 47614383212899288105565.  What seems most likely to me is testing for unmonitored wikis like Chris said.  I have yet to see any proof of it though.  I am really interested to find out if there are any hits later to those pages that seem unusual, especially a search engine referrer looking for that string of numbers.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Chris Mikkelson</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20497</link>
		<pubDate>Sun, 25 Jun 2006 02:09:19 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20497</guid>
					<description>Some sort of test/probe perhaps?  Maybe they send the bots back later to see if the random numbers are still there.  If they are, it means:

1) "whatever this bot is doing" got through, i.e. they're testing the defenses of the website, and

2) the wiki is not well-policed, and thus a better target for wiki-spamming.</description>
		<content:encoded><![CDATA[<p>Some sort of test/probe perhaps?  Maybe they send the bots back later to see if the random numbers are still there.  If they are, it means:</p>
<p>1) &#8220;whatever this bot is doing&#8221; got through, i.e. they&#8217;re testing the defenses of the website, and</p>
<p>2) the wiki is not well-policed, and thus a better target for wiki-spamming.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: IncrediBILL</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20422</link>
		<pubDate>Sat, 24 Jun 2006 20:04:08 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20422</guid>
					<description>I'm just curious why you allow blank user agents on your sites.

Install a good UA filter and it'll stop a lot of automated tools.

Also, consider putting a captcha on your wiki to stop the rest.</description>
		<content:encoded><![CDATA[<p>I&#8217;m just curious why you allow blank user agents on your sites.</p>
<p>Install a good UA filter and it&#8217;ll stop a lot of automated tools.</p>
<p>Also, consider putting a captcha on your wiki to stop the rest.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dirk</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20421</link>
		<pubDate>Sat, 24 Jun 2006 20:03:42 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20421</guid>
					<description>No idea if they're related, but I got a few spam posts for numeric domains on one of my forums today, e.g.

416983032 [url=h*tp://www_480429077_com]480429077[/url] h*tp://www_139138793_com

That was the entire post (slightly edited: dots to underscores and h*tp instead of http to prevent linkage)</description>
		<content:encoded><![CDATA[<p>No idea if they&#8217;re related, but I got a few spam posts for numeric domains on one of my forums today, e.g.</p>
<p>416983032 [url=h*tp://www_480429077_com]480429077[/url] h*tp://www_139138793_com</p>
<p>That was the entire post (slightly edited: dots to underscores and h*tp instead of http to prevent linkage)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Administrator</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20379</link>
		<pubDate>Sat, 24 Jun 2006 14:16:34 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20379</guid>
					<description>To Matt,
I doubt it. Some of the pages were absolute virginal. Never been added content to.</description>
		<content:encoded><![CDATA[<p>To Matt,<br />
I doubt it. Some of the pages were absolute virginal. Never been added content to.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Matt Sergeant</title>
		<link>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20374</link>
		<pubDate>Sat, 24 Jun 2006 13:28:14 +0000</pubDate>
		<guid>http://spamhuntress.com/2006/06/24/random-numbers-edits-on-wikis/#comment-20374</guid>
					<description>I remember a while ago Justin Mason pointing out breadcrumbs left by Nigerian scammers to say "I've done this one". I wonder if it's a variation on that theme.

Or just broken spamware.</description>
		<content:encoded><![CDATA[<p>I remember a while ago Justin Mason pointing out breadcrumbs left by Nigerian scammers to say &#8220;I&#8217;ve done this one&#8221;. I wonder if it&#8217;s a variation on that theme.</p>
<p>Or just broken spamware.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
