Recently looked at my logs and noticed that there has been repeated requests for just 3 specific images via one specific User-Agent. All with No-Referrer. All from various wireless cell phone networks all over the US, some abroad.
(a) REQUESTS
Only 3 images requested. Image1.jpg, Image2.jpg, Image3.jpg
Some networks only request only requests only one, e.g. Image1.jpg but would request it from various IPs within their network.
While others request the same image from the same IP but about 7-20 minutes apart.
(b) REFERRER
None
(c) USER-AGENT
Mozilla/4.0
(d) IPs
Various cellphone networks. There were multiple requests from all of these networks from either 1+ IPs.
Small sample of some specific IPs, but there are tons more.
174.254.71.230 - United States West Hollywood Verizon Wireless
166.182.3.111 - Wireless Data Service Provider
1.200.229.83 - Vibo Telecom Inc. (Taiwan)
174.141.208.106 - United States Jacksonville Metropcs Wireless Inc.
208.54.36.176 - United States Cleveland T-mobile Usa Inc.
(e) ROBOTS.TXT
no
Not sure if I am understanding what is going on but I am trying to serve them a 403 but doesn't seem to work.
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/4\.0$
RewriteCond %{REQUEST_FILENAME} \.(jpeg|jpg|gif|png)$ [NC]
RewriteCond %{HTTP_REFERER} ^-$
RewriteRule .* - [F]
See anything wrong with the code?
Anyone see this on their logs as well? Why are they all requesting the same image.
Note: These images are nothing special and not even the popular ones on my site so that was also one of the reasons I noticed this. Thanks a bunch.