vote up 4 vote down star

If you were going to store a user agent in a database, how large would you accomdate for?

I found this technet article which recommends keeping UA under 200. It doesn't look like this is defined in the HTTP specification at least not that I found. My UA is already 149 characters, and it seems like each version of .net will be adding to it.

I know I can parse the string out and break it down but I'd rather not.

flag

7 Answers

vote up 6 vote down check

HTTP specification does not limit length of headers at all. However web-servers do limit header size they accept, throwing "413 Entity Too Large" if it exceeds. Depending on web-server these limits vary from 4KB to 64KB.

link|flag
1  
Apache limits the maximum field length to 8k (httpd.apache.org/docs/2.2/…). – Gumbo Mar 17 at 17:11
I'm less concerned with server limits since I am on IIS, I know it won't ever be bigger then their limit which is still preety large if memory serves.... – Josh Mar 17 at 18:42
1  
@Josh -- memory serves you well, on IIS it's 16K by default. ;-) – vartec Mar 17 at 21:11
Which I better not get a 16k user agent.... – Josh Mar 18 at 2:08
vote up 0 vote down

How's this for big?:

"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; YPC 3.2.0; SearchSystem6829992239; SearchSystem9616306563; SearchSystem6017393645; SearchSystem5219240075; SearchSystem2768350104; SearchSystem6919669052; SearchSystem1986739074; SearchSystem1555480186; SearchSystem3376893470; SearchSystem9530642569; SearchSystem4877790286; SearchSystem8104932799; SearchSystem2313134663; SearchSystem1545325372; SearchSystem7742471461; SearchSystem9092363703; SearchSystem6992236221; SearchSystem3507700306; SearchSystem1129983453; SearchSystem1077927937; SearchSystem2297142691; SearchSystem7813572891; SearchSystem5668754497; SearchSystem6220295595; SearchSystem4157940963; SearchSystem7656671655; SearchSystem2865656762; SearchSystem6520604676; SearchSystem4960161466; .NET CLR 1.1.4322; .NET CLR 2.0.50727; Hotbar 10.2.232.0; SearchSystem9616306563; SearchSystem6017393645; SearchSystem5219240075; SearchSystem2768350104; SearchSystem6919669052; SearchSystem1986739074; SearchSystem1555480186; SearchSystem3376893470; SearchSystem9530642569; SearchSystem4877790286; SearchSystem8104932799; SearchSystem2313134663; SearchSystem1545325372; SearchSystem7742471461; SearchSystem9092363703; SearchSystem6992236221; SearchSystem3507700306; SearchSystem1129983453; SearchSystem1077927937; SearchSystem2297142691; SearchSystem7813572891; SearchSystem5668754497; SearchSystem6220295595; SearchSystem4157940963; SearchSystem7656671655; SearchSystem2865656762; SearchSystem6520604676; SearchSystem4960161466; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)"

link|flag
vote up 1 vote down

Here is one that is 257

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 3.0.04506.648; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

link|flag
I've seen up to 255 characters so far on a very very low traffic site. So not surprising. .Net 4.0 will probally add another 20 chars as well. – Josh Aug 7 at 15:41
vote up 1 vote down

I got this user agent today, overflowing our vendor's storage field:

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; MDDR; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

Ridiculous! 229 chars?

So take that size, double it, double it again, and you should be set until Microsoft's next blunder (maybe this time next year).

Go bigger than 1000!

link|flag
Shesh...this is exactly what I was talking about.... – Josh Jun 5 at 18:53
vote up 1 vote down

There is no stated limit, only the limit of most HTTP servers. Keeping that in mind however, I would impliment a column with a reasonable fixed length (use Google to find a list of known user agents, find the largest and add 50%), and just crop and user agent that is too long - any exceptionally long user agent is probably unique enough even when cropped, or is the result of some kind of bug or "hack" attempt.

link|flag
vote up 3 vote down

Since it's for database purposes and there is no practical limit i'd go for a UserAgents Table with UserAgentId as Int and UserAgentString as NVarChar(MAX) and use a foreign key on the original table.

link|flag
Interesting idea, I never thought of normalizing it...makes sense... – Josh Mar 17 at 16:30
vote up 1 vote down

I'll give you the standard answer:

Take the largest possible value you can possibly imagine it being, double it, and that's your answer.

link|flag
heh so how large do you think it will be? – Josh Mar 17 at 16:15
Twice whatever I think it is, of course. Though 256 seems like a nice round number to double. – Ed Marty Mar 17 at 16:16
I find it funny whenever we don't know what a good length would be we always end up with 256 or another multiple of 2. – Josh Mar 17 at 16:17
It compresses well! – Ed Marty Mar 17 at 16:23
Well 512 sounds good that gives me at least 10 years of .net releases and other junk to accumulate and by then I hope to be retired. Thanks again – Josh Mar 17 at 16:29
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.