Scatter/Gather thoughts

by Johan Petersson

Schmozilla and wizard.yellowbrick.oz

Looking over my web server logs it was hard not to notice the user agent Schmozilla/v9.14 Platinum and its similarly spoofed referrer http://wizard.yellowbrick.oz. I'm used to seeing referrer spammers and harvesters in my logs, but I had never seen this one before. After fetching the blog and the front page, this spider went for a directory listed as Disallowed in my robots.txt file; that's not very nice.

Looks very much like it's Perl code copied verbatim from Perl Cookbook, specifically Fetching a URL from a Perl Script (recipe 20.1):

$ua->agent("Schmozilla/v9.14 Platinum"); # give it time, it'll get there
my req = HTTP::Request->new(GET => $url);
$req->referer("http://wizard.yellowbrick.oz"); # perplex the log analyzers

The person doing this isn't too bright – he would have changed the user agent and referrer to something more plausible if he was – but at least he has access to good literature.

4 December, 2004