It is most likely that they send the request to your web server without the owner knowing about this. But one thing is for certain:
- It causes traffic
- Costs energy
- Spams your logs
- Etc. etc.
And all this because the computer administrator/owner has not made an effort to secure the computer at a minimum.
Go to your apache log directory an check if the same is happening to you using the following commands:
less error.log | grep RFC2616 | awk ‚{print $8}‘ | sort | uniq
less error.log | grep RFC2616 | awk ‚{printf(„%s %s %s\n“, $3, $4, $8)}‘
Further reading:
- w3.org RFC2616 section 14.23
- it.toolbox.com The first day in the life of a webserver
- isc.sans.org The first day in the life of a website
Grade A stuff. I’m unquseitnoalby in your debt.