up vote 8 down vote favorite
share [g+] share [fb]

Is there a good, up-to-date listing anywhere that maps User-Agent HTTP Header strings --> operating systems?

link|improve this question

67% accept rate
feedback

6 Answers

What language are you developing in? That makes a huge difference in what is available to you if you want to do data-mining on the user agent string.

Nescio's response provides a good list. The second link under PHP in my list also contains basically the same information which is simple enough that you should be able to translate it to any language.

link|improve this answer
Very useful links. Thanks! I'm using ASP.NET and hadn't noticed HttpBrowserCapabilities. That certainly helps. – C. Dragon 76 Oct 23 '08 at 3:58
your 1st link ain't working – Pacerier Sep 24 '11 at 12:19
@Pacerier It looks like the author has stopped supporting it, according to this page: apptools.com/phptools/browser Fortunately, someone picked up his work where he left off and made some improvements. – Dan Herbert Sep 24 '11 at 13:53
feedback

Below link lists famous Operating systems which can be detected from user agents. http://www.geekpedia.com/code47_Detect-operating-system-from-user-agent-string.html

The below link lists common useragents. http://www.seehowitruns.net/index.php?report=1&action=view_report&x=2&y=10

link|improve this answer
feedback

Here's a quick list... let me know if I missed one you are interested in.

http://www.geekpedia.com/code47_Detect-operating-system-from-user-agent-string.html:

// Match user agent string with operating systems
Windows 3.11 => Win16,
Windows 95 => (Windows 95)|(Win95)|(Windows_95),
Windows 98 => (Windows 98)|(Win98),
Windows 2000 => (Windows NT 5.0)|(Windows 2000),
Windows XP => (Windows NT 5.1)|(Windows XP),
Windows Server 2003 => (Windows NT 5.2),
Windows Vista => (Windows NT 6.0),
Windows 7 => (Windows NT 7.0),
Windows NT 4.0 => (Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT),
Windows ME => Windows ME,
Open BSD => OpenBSD,
Sun OS => SunOS,
Linux => (Linux)|(X11),
Mac OS => (Mac_PowerPC)|(Macintosh),
QNX => QNX,
BeOS => BeOS,
OS/2 => OS/2,
Search Bot=>(nuhk)|(Googlebot)|(Yammybot)|(Openbot)|(Slurp)|(MSNBot)|(Ask Jeeves/Teoma)|(ia_archiver)

link|improve this answer
I have windows 2004 running, and the string contains "Windows 5.2", not "Windows NT 5.2". – Frank Schwieterman Jan 10 '09 at 19:53
should be: Windows 7 => (Windows NT 6.1) – ByteNirvana May 6 '09 at 15:06
Windows 8 is (Windows NT 6.2) – shitburg Oct 29 '11 at 17:54
feedback

It's worth keeping in mind that the user agent header can easily be faked. I wouldn't rely on it for anything important.

link|improve this answer
Yes, that's a good point. – C. Dragon 76 Oct 23 '08 at 2:05
3  
You can't use it as a security check, but otherwise its fine. Very rarely will a user tweak their user-agent string, and if they do I don't mind if my software fails for them. – Frank Schwieterman Jan 10 '09 at 19:54
"and if they do I don't mind if my software fails for them": So you're the one! – Anonymous May 1 '09 at 8:54
I agree with Frank, it's hard enough to get the detection right without also having to worry about people messing with the UAs. – CRice May 23 '11 at 1:19
feedback

It's nearly always a bad idea to do UA sniffing. You can't rely on it at all.

If you want to sent the client a response specific to its environment you should perhaps distinguish differences from content-type or encoding. These are rock-solid specified.

link|improve this answer
1  
I think UA sniffing is good to a point, its gets you a fair way into detection for the main/obvious things, but then you need something else backing it up. – CRice May 23 '11 at 1:21
could you explain more on your link? on your idea of rock-solid specified ways of determining the OS? – Pacerier Sep 24 '11 at 12:28
feedback

The User Agent from the browser is not something I would rely on for anything, We all use it for statistics, but we know they're not 100% accurate.

I use firefox and regularly spoof IE for some sites that don't like it, my regular UA is:

Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.3) 
Gecko/2008101315 Ubuntu/8.10 (intrepid) Firefox/3.0.3

I sometimes use a firefox extension to change it to:

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; MS-RTC LM 8; 
.NET CLR 2.0.50727; .NET CLR 1.1.4322)

when you are looking at it, you would need to parse the different parts, the OS is the third part of the semicolon-delimited values between brackets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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