views:

39

answers:

1

In my error log there are a bunch of lines like this (line breaks added for legibility):

[Thu Jul 15 22:20:14 2010] [error] [client 76.199.65.55]
File does not exist: /home/[snip]/public_html/brass/images,
referer: http://brass.orderofthehammer.com/index.php

All of the lines are from the same IP address. Looking at the pattern of pages visited, it seems likely to be a regular user of the site. There's no such directory as /images. Is there some browser out there that automatically looks for an /images directory for some reason?

A: 

You could try and record the User Agent String in your logs to identify which browser is used (so long as that person has not purposefully altered it).

It could also be a crawler or browser extension. However, doing a DNS Lookup shows that the IP Address resolves to an address owned by AT&T on an ADSL line, so it is unlikely to be a major crawler.

Do you have any links on your site which link to /images? If so someone using the FasterFox addon (or similar) which prefetches web pages may automatically download them.

Callum Rogers
It's probably not a crawler since the IP belongs to a SBC user
quantumSoup
I do not believe there has ever been a directory named `images` on the site. There is a directory with graphics inside, but its name is `gfx`. I searched through my local copy of the files up on the site, but didn't find anything that erroneously points to an `/images` directory.
Hammerite
It could always be a tech savvy user just messing around. I sometimes look at a page's source and fiddle with the URL/query string just to see what has happened. Maybe he just wanted to download your images and tried `/images`? You can probably find out his username, why not ask him?
Callum Rogers
No, the error log suggests that he was browsing for a while, requested a couple of dozen pages, and every page he visited the browser requested this url for some reason. I say this going by the "referer" values in the error log.
Hammerite