Forum Moderators: open

Message Too Old, No Replies

UA's starting with "User-Agent:"

Redundant UA declaration from MSIE look-alikes

         

caribguy

6:15 am on Nov 25, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



What are these?

Various ip's that look like they belong to legitimate visitors. No referrer information, grabs 1-3 pages, sometimes preceded by HEAD, no images / css / js.

One case was followed by a regular looking visit from the same ip address.

"User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; Zango 10.3.75.0)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.1)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; FunWebProducts; .NET CLR 1.1.4322; InfoPath.2; 3P_UVRM 1.0.14.4; DEL 3.2.155.0)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; .NET CLR 1.1.4322; InfoPath.1)"
"User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506; eMusic DLM/3)"

Samizdata

10:51 am on Nov 25, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Essentially it is a corrupted registry entry for the user-agent, sometimes caused by buggy software such as poorly developed browser add-ons.

It has also been associated with poorly designed scrapers in the past.

The one that was followed by a regular visit was probably an old version of AVG LinkScanner (now fixed) or some other annoying pre-fetching tool.

Many here block such requests, but the choice is yours.

...

caribguy

11:00 am on Nov 25, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks!

Should the hyphen be escaped here?

RewriteCond %{HTTP_USER_AGENT} ^(User\-Agent¦[etc...])

Samizdata

11:17 am on Nov 25, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Should the hyphen be escaped

No. The only characters I escape are periods, parentheses and spaces.

There may be others, but I have yet to encounter them.

...