mail us  |  mail this page

contact us
training  | 
tech stuff  | 

Tech Stuff - Mobile Browser ID (User-Agent) Strings

The non-mobile stuff is here (hint: you get jerked back by the power cord after 3 feet and your arms start to ache after 10 minutes with non-mobile stuff) or click on any right menu link for the browser/section.

We started these pages with four strings because we had never seen a comprehensive list anywhere. Nominally RFC 1945 and RFC 2068 define them (get RFCs) but only as an afterthought (the RFCs define HTTP 1.0 and 1.1). Browser IDs, more correctly User Agent IDs, appear, among other places, as the environmental variable HTTP_USER_AGENT in Apache. You need this information to make the fewest checks possible for the browser environment or to optimise the display or ... to know who and what is crawling around your site. And if you want to check your browser string use our cheap trick page.

New Stuff: Again it's been a very long time since the last update. Frankly, it seems pretty pointless just updating the version numbers of Chrome (66) and FF (59) which is what has mostly happened over the last couple of years. We fear that browser innovation is now essentially dead. We have a volatile HTML specification (HTML 5 is whatever the cabal decides it is today) so that only the seriously resourced can keep up. Meaning WebKit and Microsoft ('cos they'll always be there) with Mozilla becoming increasingly irrelevant (look at the stats). The big web sites (you know who we mean) are part of the HTML 5 cabal. Automatic browser updates means they can reject not-the-very-latest-HTML5-flavor browsers re-inforcing the lock-in. Maybe we are too pessimistic. Can Goanna (Palemoon) survive in this environment as a lone outpost? Or is there another project that could? Hope springs external. And besides we are dyed-in-the-wool K-Meleon users so what do we know.

Department of useless stuff: Anyone know the difference between Open Mini and Mobile...no it's not the beginning of a joke. One of our smart readers responded with a link to Opera's site which says - roughly - that Opera Mobile is a real browser that can directly access the web - just like regular Opera and is designed for smartphones whereas Opera Mini is a cut-down browser that needs an Opera server and is typically used on feature phones. So there you go.

As always thanks to everyone who took the time to supply a string - even if we didn't use it.

The end of an era: The last version of Netscape - the browser that started the modern browser business is no more. Netscape is dead - long live Netscape (with appropriate shudders at the memory of NS 4.x).

Getting the Strings for Nefarious Purposes (and in Other Formats)

Note: The title is our normal (and puerile) attempt at humor. Plenty of folk want to use the strings for sensible and useful reasons. But that would make a boring title. You are perfectly at liberty to use the strings for any purpose you choose.

We regularly get asked for these strings in other formats - mostly without all our pathetic attempts at humor in the explanations. We had studiously avoided doing anything because it smelled, vaguely, of work. Then we got an email from Marc Gray who suggested that we use a simple regular expression and was even kind enough to supply it. Marc provided a php script, which we enclose below (with a minor correction supplied by Dave Thomas) for those to whom it may be a more sensible solution (a formatted list based on this script is available here, credits and their script at the foot of the page). We slapped together a few lines of Javascript (you can't actually code in JS you can only slap things together - doubtless google would disagree) based on his idea so if you light the blue touch paper by clicking the button below, this page will disppear (after about 10 to 20 secs - depending on the speed of your processor) only the raw strings will remain. Simply save the resulting page and hack out anything that looks vaguely HTML'ish (the strings are enclosed in <p class="g-c-s"></p> tags). (view javascript here) It was tested and works with FF (3 and 4), Webkit (Chrome/Safari), Opera 11.x (works on small data sets, croaks on the whole page), and IE 9.0 & even IE 10 (IE 8.0 does not work, which probably means all prior versions don't work either). We are progressively going to add the feature on a browser-by-browser basis for your delight, edification and titillation. To restore the page to its full glory(!) just hit your page refresh button.

Note: We removed a bunch of annoying <br /> tags that were lying around inside the browser strings from our old page formatting method.

// Marc Gray's PHP script (untested by us)
// use at your discretion
<?php
$page = file_get_contents('http://www.zytrax.com/tech/web/mobile_ids.html');
preg_match_all('/<(p) class="g-c-[ns]"[^>]*>(.*?)<\/p>/s', $page, $m); 

$agents = array();
foreach($m[2] as $agent) {
  $split = explode("\n", trim($agent));
  foreach($split as $item) {
    $agents[] = trim($item);
  }
}
// $agents now holds every user agent string, one per array index, trimmed
foreach($agents as $agent) {
 echo($agent."\n");
}

?>

Notes:

  1. We always send an email to thank you for your contribution - if you don't get one it's 'cos your spam filters are probably putting it in your junk folder (thanks a bundle) or 'cos you gave us a wrong return address 'cos you don't trust us (thanks a bundle).

  2. As always - especially if you are feeling a super-sleuth moment coming on - have look at the mystery strings and strings from server logs to add to the total of mankind's knowledge.

  3. We discontinued the crawler, spiders and robots section - there is much better coverage at this site which is the home of robots.txt which is, as you all know, the file that tells well behaved crawlers to 'keep out' of your dirty linen.

  4. We used to publish the feature list for mobile things dating from the days when it would probably say something like - 'makes phone calls, 15 char display, weighs 6 pounds'. Now the spec list just leaves us with a feeling of inferiority (they are smarter than we are) and it takes about 6 hours to get the specs from these horrible 'graphic-overkill' mobile supplier web sites. So we stopped.

For browser historians: We thought that Mosaic was the original browser. As usual we were wrong. James Butler took the time to drop us an email - thanks:

Before there was NSCA's Mosaic there were several other browsers capable of interpreting HTML, including Erwise and Viola, both of which I used before the Andreeson project issued any software. Although primarily for viewing SGML, both of those browsers did a pretty good job of parsing the very basic HTML commands that Mr. Berners-Lee published as he developed his SGML subset (HTML).

For serious study of the topic Johnathan McCormack sent this link to an arstechnica article on the early web browsers. Fascinating stuff.

If your browser string is NOT here please take a moment and click here then mail us the result (if you are using an exotic browser send us the URL of where to get it). We are now crediting the supplier of each string or answer individually as a homage to all those folks who take the time as thousands of you have done over the years. Many thanks for helping ourselves. We have added some info about changing UA strings which unless you have to do it is, we think, a Very Bad Thing™.

Mobile Things

This section was started to include the browser strings generated by mobile things which we broadly define as:

Well its just a working definition and we are always open to suggestions. We were going to organize this section by browser - but we have decided to keep telephones separate - go figure. And if you have any better ideas remember - keep 'em to yourself (just joking).

Mobile Development Resources

For those of us being threatened with reduced rankings if our site is not mobile friendly here is google's mobile test page. And if it fails go directly to jail, do not pass go....

Theo Tester (right) provided two new resource references: dev.mobi/ provides a load of information and tools to help you develop amd optimize mobile web content and the W3C Device Description working Group (DDWG) is also active in this area. And Sam ? provided a link to tiltview.com which lets you look at sites as if from a mobile device.

Yaso Leon has pointed out that there is a sourceforge project dedicated to wireless browser strings for WAP developers. You may want to check it out. Thanks Yaso.

Normen Kowalewski pointed out to us a long time ago (apologies) for those of you interested in this stuff that the W3C have published a best practices for web layout for mobile users and the Open Mobile Alliance have a section on XHTML-MP (WAP Core). Well it's always better late than never.

The value Profile/MIDP-2.0 Configuration/CLDC-1.1 in most modern mobile UA strings defines its Mobile Information Device Profile version 2.0 which in turn describes its Java based capabilities since that is the widely supported method for extending the phone/pda capabilities.

AvantGo

Not strictly a browser but a service for PalmOS and Windows CE users which uses a special browser to optimize content presentation.

Mozilla/5.0 (Danger hiptop 3.4; U; AvantGo 3.2)

Explanation: Browser is AvantGo v3.4. Now showing Mozilla 5 compatibility. string from David Ross - thanks.

Mozilla/3.0 (compatible; AvantGo 3.2)

Explanation: Browser is AvantGo v3.2, running under PalmOS 3.0 on a Treo 180. (Man they must have been drunk to pick Mozilla/3.0 as a compatability model)

Mozilla/5.0 (compatible; AvantGo 3.2; ProxiNet; Danger hiptop 1.0)

Explanation: &lt;humblepie>We made some errors in the initial posting of this explanation - as always the error are ours not the contributor - apologies to Joe and Eric&lt;/humblepie> Browser string is AvantGo v3.2, to leverage sites which support this well known browser running on a Danger HipTop 1.0. (string from Eric Jacobsen who is building a list of mobile user agent ids - more info when available). BTW 'ProxiNet' seems to be a proxy service used by 'hiptop' to handle screen formatting and sizing - thanks to Joe George.

Bolt

A Webkit 5 based browser optimised for mobile thingies. Full, Lite and Blackberry versions available according to the website.

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; BOLT/2.800) AppleWebKit/534.6 (KHTML, like Gecko) Version/5.0 Safari/534.6.3

Explanation: Bolt browser on Sony Ericsson K800i. String from Thu Win - thanks.

DoCoMo

OK, we know it's not really a browser but a Japanese service - so how would you classify it? (though from reading various press releases they do seem to have licensed some browser technology). And besides - see if we care!

Many thanks to Charles Gutjahr for providing this link (to a PDF doc) which explains the rules for browser identification for Japanese I-Mode devices (hint: It's in Appendix B).

This has now turned into a Japanese corner and covers a number of mobile services in that country - not just DoCoMo - much of the data was supplied by Ale Karawapo - very many thanks.

DoCoMo (NTT Mobile)

DoCoMo/1.0/P502i/c10 (Google CHTML Proxy/1.0)

Explanation: We suspect the P502i is significant! String from Erik Inge Bolsø - thanks.

DoCoMo/2.0 SH901iC(c100;TB;W24H12)

Explanation: i-mode (FOMA network) from NTT DoCoMo. This is the newest and most feature-rich network. Users get the most avanced multimedia-equipped phones. SH901iC seems to be the device name. String from Ale Karawapo - thanks.

DoCoMo/1.0/N503is/c10

Explanation: i-mode (mova network) from NTT DoCoMo. Older DoCoMo network with no normal html support. N503is seems to be the device name. String from Ale Karawapo - thanks.

au by KDDI (Mobile)

KDDI-KC31 UP.Browser/6.2.0.5 (GUI) MMP/2.0

Explanation: EZweb (WAP 2.0/XHTML-MP compatible devices) from au, au is (one of) KDDI's mobile providers. String from Ale Karawapo - thanks.

UP.Browser/3.04-TS14 UP.Link/3.4.4

Explanation: EZweb (HDML) from au. String from Ale Karawapo - thanks.

Ex J-Phone now Vodafone Live!

Vodafone/1.0/V802SE/SEJ001 Browser/SEMC-Browser/4.1

Explanation: Vodafone live! (new 3G) from Vodafone. Profile/MIDP-2.0 Configuration/CLDC-1.1. String from Ale Karawapo - thanks.

J-PHONE/5.0/V801SA/SN123456789012345 SA/0001JP Profile/MIDP-1.0

Explanation: Vodafone live! (older 3G) from Vodafone. Configuration/CLDC-1.0. String from Ale Karawapo - thanks.

PHS Networks

AIR-EDGE

Mozilla/3.0(DDIPOCKET;JRC/AH-J3001V,AH-J3002V/1.0/0100/c50)CNF/2.0

Explanation: AIR-EDGE phone (Willcom's PHS provider). Formerly known as AirH" by DDI Pocket. String from Ale Karawapo - thanks.

PDXGW/1.0 (TX=8;TY=6;GX=96;GY=64;C=G2;G=B2;GI=0)

Explanation: AirH" phone (DDI Pocket's PHS provider). This service would later become AIR-EDGE by Willcom. String from Ale Karawapo - thanks.

ASTEL/1.0/J-0511.00/c10/smel

Explanation: DOT-i is one of Astel's PHS services, which supported cHTML, POP3 and SMTP. Astel quit the business on November 30, 2005. String from Ale Karawapo - thanks.

Note: There is another PHS provider, NTT's DoCoMo PHS, but this provider stopped accepting new customers on April 30, 2004, and will kill the service completely in the third quarter of 2007.

Dolphin

Mobile optimised browser available for Android, Apple and other smartphones. Seems you can do all kinds of things like talk to it, draw pictures of the things you want to search for (interesting possibilities for the more imaginative) and even have tabbed browsing. Dolphin's website indicates that you can switch between 'desktop' and 'mobile' views. Strings also scattered around the mobile manufacturer's sections.

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16

Mozilla/5.0 (Linux; U; Android 2.3.5; en-gb; HTC Desire HD A9191 Build/GRJ90) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Dolphin on an android device (in this case the HTC Desire - A9191). The top string is when the browser is in desktop mode (a kind of iPhone/iPad like format), the bottom string when in mobile mode. String from Rich OKelly - thanks.

EudoraWeb

Yeah from the email client folks. This is part of an Internet suite (including mail) for the PalmOS.

Mozilla/1.22 (compatible; MSIE 5.01; PalmOS 3.0) EudoraWeb 2.1

Explanation: Browser from Eudora, PalmOS 3.0 on a Treo 180. Does the above string mean they have lousy Netscape compatability and great MSIE compatability?

ftxBrowser

A free browser for Windows CE.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: ftxBrowser (alternate free browser) under Windows CE 2003 on the Pocket PC. String from Boris Bogdanov - thanks.

Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; PPC; 240x320)

Explanation: ftxBrowser (alternate free browser) under Windows CE 2002 on the Pocket PC. String from Boris Bogdanov - thanks.

Minimo

Tiny foot-print browser from the mozilla folks - we guess the plan is you can have all those wonderful features on a screen the size of your finger nail. Just think about tabbed browsing on that. Shivers down the spine stuff. Notified by Eugene Sadhu - just waiting for a string - anyone? Wonder how many times they will change the name before it's released (just musing out loud).

Mozilla/5.0 (X11; U; Linux armv6l; rv 1.8.1.5pre) Gecko/20070619 Minimo/0.020

Explanation: Mozilla project's Minimo on a Nokia N800 under OS2007. String from Jake Wasdin Williams - thanks. Jake notes that tabbed browsing is supported but no javascript and some other advanced featured yet.

Mozilla/5.0 (Windows; U; Windows CE 5.1; rv:1.8.1a3) Gecko/20060610 Minimo/0.016

Explanation: Mozilla project's Minimo on Windows CE Mobile 5.x. String from Alex Williams - thanks. Alex notes that this a very early version and CSS positioning is not fully supported and the character rendering leaves a lot to be desired on small screens - but tabbed browsing on a PDA - wow.

OpenWave

Commercial mobile browser. Looks like its packaged with the telephone or thingie.

OPWV-SDK UP.Browser/7.0.2.3.119 (GUI) MMP/2.0 Push/PO

Explanation: OpenWave V7 simulator running on Windows XP SP2. String from Alex Williams - thanks.

UP.Browser/6.1.0.1.140 (Google CHTML Proxy/1.0)

Explanation: OpenWave on something? String from Erik Bolsø - thanks.

PocketLink V2.56b for PalmOS 3.5 to 5.x (PalmOS 3.5,PalmOS 4.0,PalmOS 4.1,PalmOS 5.0,PalmOS 5.x). Apaprently the original version is no longer available from PalmOS.

Mozilla/4.0 (compatible; MSIE 5.0; PalmOS) PLink 2.56b

Explanation: PocketLink 2.56b running on a PalmOS emulator on a Nokia N800 no less. String from Jake Wasdin - thanks.

Plucker

Open source off-line browser system for the PalmOS - seems to read the pages into web host - modify them and then deliver to the PalmOD PDA. Or something like that. And please do be careful how you pronounce it in mixed company - and never after imbibing even vaguely alchoholic liquids.

Mozilla/5.0 (Windows; U; Windows NT 5.1; ca; rv:1.5) Gecko/20031007
Plucker/Py-1.4
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)

Explanation: Off-line system - we're guessing the various strings are aliases.

NetFront

Available for Windows CE, Linux and VxWorks.

Mozilla/5.0 (PDA; NF35WMPRO/1.0; like Gecko) NetFront/3.5

Explanation: NetFront 3.6 demo version. String from Herman Krommenhoek - thanks.

Mozilla/4.08 (Windows; Mobile Content Viewer/1.0) NetFront/3.2

Explanation: This a tool that allows simulation of Netfront displays - tool running on XP with SP2. String from Alex Williams - thanks.

Mozilla/4.0 (PS2; PlayStation BB Navigator 1.0) NetFront/3.0

Explanation: Japanese Playstation 2 with NetFront 3.0. String from Leonard Oliveira - thanks.

Mozilla/4.0 (PDA; PalmOS/sony/model crdb/Revision:1.1.36(de)) NetFront/3.0

Explanation: CLie(Palm 5.0) with NetFront 3.0. String from Stefan Alcalde Garcia - thanks.

Mozilla/4.0 (PDA; PalmOS/sony/model prmr/Revision:1.1.54 (en)) NetFront/3.0

Explanation: NetFront 3.0 under PalmOS 5.2 on a Sony Clie ?. String from Boris Bogdanov - thanks.

Mozilla/4.0 (PDA; Windows CE/0.9.3) NetFront/3.0

Mozilla/4.0 (PDA; Windows CE/1.0.1) NetFront/3.0

Explanation: NetFront 3.0 using Widows CE 2003 on ? String from Boris Bogdanov - thanks.

Mozilla/4.0 (PDA; SL-C750/1.0,Embedix/Qtopia/1.3.0) NetFront/3.0 Zaurus C750

Explanation: NetFront 3.0 on a Sharp Zuarus Linux based SL-C750 thingie. String from Boris Bogdanov - thanks.

PIE

Pocket Internet Explorer.

WM5 PIE

Explanation: Nice short string. Pocket Internet Explore under Windows Mobile v5. String from Jason Angalet - thanks.

Xiino

An alternate browser for PalmOS (successor to PalmScape).

Xiino/1.0.9E [en] (v. 4.1; 153x130; g4)

Explanation: Xiino 1.0.9E under PalmOS 4.1 on a ?. String from Boris Bogdanov - thanks.

Telephones & Tablets & Pad (PDA) Thingies

We are now adding telephones, tablets (or whatever the latest buzz phrase is) - as well as PDA thingies - in this section. Yeah we know that you can get PDA thingies which make phone calls - but what the heck. If you got a better idea - keep it to yourself (just joking - we'd love to hear from you).

Acer

Since the arrival of the iPad we're adding all kinds of tablet suppliers.

Mozilla/5.0 (Linux; U; Android 3.2.1; en-gb; A501 Build/HTK55D) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Acer Iconia Android base with default (Chrome'ish) browser. String from Mark Lynch - thanks.

Opera/9.80 (Android 3.2.1; Linux; Opera Tablet/ADR-1205181138; U; en-GB) Presto/2.10.254 Version/12.00

Explanation: Acer Iconia Android base with Opera browser. String from Mark Lynch - thanks.

Mozilla/5.0 (Android; Linux armv7l; rv:9.0) Gecko/20111216 Firefox/9.0 Fennec/9.0

Explanation: Acer A100 Tablet Android base with Firefox/Fennec browser. String from Ron Silva - thanks.

Mozilla/5.0 (Android; Linux armv7l; rv:9.0) Gecko/20111216 Firefox/9.0 Fennec/9.0

Explanation: Acer A100 Tablet Android base with Firefox/Fennec browser. String from Ron Silva - thanks.

Mozilla/5.0 (Linux; U; Android 3.0.1; en-us; A500 Build/HRI66) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Acer Iconia A 500 Tablet Android 3.0.1 (Honeycomb) base. String from Leroy Hill - thanks.

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; MAAR; .NET4.0C)

Explanation: Acer Iconia Tab W500. String from Alexander Elsas - thanks.

Android aThingies

Anything which is not recognisably a major brand (our definition - but we can be corrupted by massive infusions of marketing dollars) is placed here. Mostly tablets and other mobile thingies.

Mozilla/5.0 (Linux; U; Android 6.0; en-US; A8 MAX Build/MRA58K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/11.3.2.960 U3/0.8.0 Mobile Safari/534.30

Explanation: Blackview A8 MAX. Low priced smartphone ~$100) from Chinese supplier. String from Johnny Deydeq - thanks.

Mozilla/5.0 (Linux; Android 4.4.4; Build/KTU84Q) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/33.0.0.0 Mobile Safari/537.36

Explanation: Silent Circle Blackphone BP1. Company boasts that devices built with privacy paramaount. In this case the device type is missing from the string. Is this it? String from Johnathan McCormack - thanks.

Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.45 Safari/535.19

Explanation: Generic Android 4.1.1 (honest) - ASUS Transformer Prime TF201 using 'request desktop site' mode. String from James Shields - thanks.

Mozilla/5.0 (Linux; Android 4.1.1; Transformer Prime TF201 Build/JRO03C) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Safari/535.19

Explanation: Generic Android 4.1.1 on ASUS Transformer Prime TF201. String from James Shields - thanks.

Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; Transformer TF101 Build/IMM76I) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30

Explanation: Generic Android 4.0.4 on ASUS TF101 using ICS (Ice Cream Sandwich) browser. String from Nils Stolpe - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; VS840 4G Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Generic Android 2.3.6 with no visible model identification. String from Kristina Baker - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; MB525 Build/3.4.2-107_JDN-9) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Generic Android 2.2.1 for tablets with no visible model identification. String from Jennifer Dehoyos - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1-1.0.19; en-us; NXM736 Build/ECLAIR) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: Generic Android 2.1 for tablets with no visible model identification. String from Karen Redmon - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; de-de; U0101HA Build/FRF85B) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Meteorit 10 with Android 2.2. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; de-de; SP-60 Build/MASTER) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Simvalley SP-60 GPS with Android 2.2.1. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-gb; ViewPad7 Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Viewsonic Vpad 7 with Android 2.2. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-2010.11.4; de-de; XST2 Build/ECLAIR) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: 4G systems Onetab XST2 with Android 2.1. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 1.0.3; de-de; A80KSC Build/ECLAIR) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: Arnova 8 on Android 1.0.3 - latest version uses 2.1. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; en-au; eeepc Build/MASTER) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Eee pc 701sd (ASUS) on Android 2.2.1. String from Peter McConnell - thanks.

Mozilla/5.0 (Linux; U; Android 1.6; en-us; xpndr_ihome Build/DRD35) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1

Explanation: Binatone iDECT iHome phone on Android 1.6. String from Sam Albuquerque - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; fr-ch; A43 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: ARCHOS 43 internet tablet on Android 2.2.1. String from Steve-David Marquet - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; de-de; X2 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Pearl Touchlet (7 inch tablet) running Android 2.2.1. String from Alexander Elsas - thanks.

Apple - mobile iThingy Stuff

Lastest Apple iPad, iPhone, iTouch, iPod - iAnythingElse (including good old Safari) can be found here

Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1

Explanation: iPhone with iOS 10.2.1 and stock safari browser. String from Nate Lindstrom - thanks.

Mozilla/5.0 (iPad; CPU OS 8_4_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12H321 Safari/600.1.4

Explanation: iPad with iOS 8.4.1 and stock safari browser. String from Pierre Beeslaar - thanks.

Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Mobile/11D257

Explanation: iPhone with iOS 7.1.2. String from Shannon Thorp - thanks.

Mozilla/5.0 (iPhone; CPU iPhone OS 8_1_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B440 Safari/600.1.4

Explanation: iPhone with iOS 8.1.2. String from Anita Rossi - thanks.

Mozilla/5.0 (iPad; CPU OS 6_1_3 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B329 Safari/8536.25

Explanation: iPad with iOS 6.1.3. This is the French version. How do we know? 'cos President Hollande told us. No other way to tell is there. String from Phil Gibt - thanks.

Mozilla/5.0 (iPad; CPU OS 6_1_2 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) CriOS/25.0.1364.124 Mobile/10B146 Safari/8536.25

Explanation: iPad with iOS 6.1.2 and a Chrome browser (CriOS/25.0.1364). String from Nikola Rezachev - thanks.

Mozilla/5.0 (iPad; CPU OS 6_1_2 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10B147 Safari/8536.25

Explanation: iPad with iOS 6.1.2. String from Mark Packard - thanks.

Mozilla/5.0 (iPad; CPU OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A403 Safari/8536.25

Explanation: iPad with iOS 6. String from Thu Win - thanks.

Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9B206

Explanation: iPad with iOS 5.1.1. String from Aaron Williams - thanks.

Mozilla/5.0 (iPod; CPU iPhone OS 5_1_1 like Mac OS X; nl-nl) AppleWebKit/534.46.0 (KHTML, like Gecko) CriOS/21.0.1180.80 Mobile/9B206 Safari/7534.48.3

Explanation: iPhone 3GS with OS 5.1.1. Dutch model - how do we know? 'cos Siri told us. String from Jan Van Beukering - thanks.

Mozilla/5.0 (iPhone; CPU iPhone OS 5_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B176 Safari/7534.48.3

Explanation: iPhone 3GS Bootram model with OS 5.1. String from Pete Serina - thanks.

Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3

Explanation: iPhone 3GS with OS 5.0.1. String from Pete Serina - thanks.

Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3

Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8J2 Safari/6533.18.5

Explanation: iPod 3g with OS 4.3.3. String from Martin Boissoneault - thanks.

Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3

Explanation: iPhone 4 with OS 5. String from Michael Sesbreno - thanks.

iTunes/9.1.1

Explanation: UA string for iTunes version - you guessed it - 9.1.1. String from Zarek Jenkinson - thanks.

Mozilla/5.0 (iPad; U; CPU OS 4_3 like Mac OS X; de-de) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F191 Safari/6533.18.5

Explanation: Stock iPad 2 - German version. String from Alexander Elsas - thanks.

Mozilla/5.0 (iPad; U; CPU OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5

Explanation: Stock iPad 2. String from Trotter Hardy - thanks.

IOS Ver	HW	    DeviceUserAgent
3       iPhone     Apple-iPhone/701.341
3.1     iPhone     Apple-iPhone/703.144
3.2     iPad       Apple-iPad/702.367
4       iPod       Apple-iPod2C1/801.293
4       iPod       Apple-iPod3C1/801.293
4       iPhone 3G  Apple-iPhone1C2/801.293
4       iPhone 3GS Apple-iPhone2C1/801.293
4       iPhone 4   Apple-iPhone3C1/801.293
4.1     iPhone     Apple-iPhone/508.11
3.0.1   iPhone     Apple-iPhone/701.400
3.1.2   iPhone     Apple-iPhone/704.11
3.1.3   iPhone     Apple-iPhone/705.18
4.0.1   iPod       Apple-iPod2C1/801.306
4.0.1   iPod       Apple-iPod3C1/801.306
4.0.1   iPhone 3G  Apple-iPhone1C2/801.306
4.0.1   iPhone 3GS Apple-iPhone2C1/801.306
4.0.1   iPhone 4   Apple-iPhone3C1/801.306

Explanation: This list defines the various Apple OS version numbers against a variety of hardware and build numbers. Info from Mansu Kim - thanks.

Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; es-es) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405
Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; es-es) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B405 Safari/531.21.10
Mozilla/5.0 (iPad; U; CPU OS 3_2_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B500 Safari/531.21.10
Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10
Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10

Explanation: Bucket load of iPad strings from logs. Strings from Tomas Hidalgo - thanks.

Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5

Explanation: Apple's iPad with mobile safari browser under iOS 4.2.1. String from Patrick Yap - thanks.

Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B367 Safari/531.21.10

Explanation: Apple's iPad with mobile safari browser under OS 3.2. String from Scott D - thanks.

Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_1_2 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7D11 Safari/528.16

Explanation: Apple's iPhone mobile safari browser under OS 3.1.2. String from Craig Reilly - thanks.

Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16

Explanation: Apple's iPhone browser tester (SDK?). String from Manju Agile - thanks.

Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3

Explanation: Nice short string (!) from Apple's iPhone which is loaded with just about every feature known to mankind and also operates to depths of 50 meters under water (just kidding). String from Kyle Reed - thanks.

AT&T

Opera/9.51 Beta (Microsoft Windows; PPC; Opera Mobi/1718; U; en)

Explanation: AT&T 8525 phone (Quad band GSM/GPRS/EDGE), Data (Tri-band UMTS/HSDPA), bluetooth 2.0, querty keyboard, WiFi (802.11b/g). String from Jon Bane - thanks.

BenQ

Taiwanese company that we had never heard of - which doesn't say very much. Their T60 is the slimest phone in the world - they say.

BenQ-CF61/1.00/WAP2.0/MIDP2.0/CLDC1.0 UP.Browser/6.3.0.4.c.1.102 (GUI) MMP/2.0

Explanation: Benq mobile phone Model CF61 - details to follow. String from Rangamani Srikrishnan - thanks.

Blackberry

Research in Motion is now dead, long live Blackberry. Blackberry's original email dodad thingy now does a lot more than just email. And is great if you need to exercise your thumbs. Section dedicated to keyboard lovers everywhere. Now updated for BlackBerry 10 OS which in its first prototype looks like - shock, horror - it has no keyboard. And in passing looks suspiciously like a rectangle with rounded corners.....

Blackberry Vendor IDs

vendorID 100 T-Mobile
vendorID 102 Cingular US
vendorID 104 Sprint
vendorID 105 Verizon US
vendorID 107 Rogers
vendorID 109 Bell Mobility Canada
vendorID 111 O2
vendorID 115 TIM
vendorID 118 Vodafone
vendorID 119 Orange France
vendorID 120 Vodafone
vendorID 124 Vodafone
vendorID 125 O3
vendorID 130 Vodafone
vendorID 132 Vodafone
vendorID 133 Vodafone
vendorID 137 Vodafone
vendorID 138 Vodafone
vendorID 139 Vodafone
vendorID 140 Vodafone
vendorID 143 Vodafone
vendorID 148 Vodafone
vendorID 152 Vodafone
vendorID 153 Vodafone
vendorID 161 Vodafone
vendorID 166 Vodafone
vendorID 167 Vodafone
vendorID 168 Vodafone
vendorID 176 Vodafone
vendorID 188 Vodafone
vendorID 192 Vodafone
vendorID 193 Vodafone
vendorID 194 Vodafone
vendorID 195 Vodafone
vendorID 196 Vodafone
vendorID 197 Vodafone
vendorID 198 Vodafone
vendorID 199 Vodafone
vendorID 200 Vodafone
vendorID 231 Vodafone
vendorID 234 Vodafone
vendorID 235 Vodafone

Partial list of VendorID values used by various Blackberry models. Supplied by alex Svetlev - thanks

Curious

MAUI WAP Browser

Explanation: Blackberry Bold 2 chinese knock-off apparently! String from Jossy Ogbuanoh - thanks.

BB10 String Prototype

Mozilla/5.0 (BB10; &lt;Device Model>) AppleWebKit/&lt;WebKit Version> (KHTML, like Gecko) Version/&lt;BB Version #> Mobile Safari/&lt;WebKit Version>

Explanation: Prototype BB10 browser string layout. All the values inside the &lt;> tags will obviously change based on the model/version. More info and explanations at this blog. String from Romeo Grugnale - thanks.

Playbook

Mozilla/5.0 (PlayBook; U; RIM Tablet OS 2.0.1; en-US) AppleWebKit/535.8+ (KHTML, like Gecko) Version/7.2.0.1 Safari/535.8+

Explanation: Blackberry Playbook OS 2.0.1 with native browser. String from Matt Lewandowsky - thanks.

Mozilla/5.0 (PlayBook; U; RIM Tablet OS 2.0.0; en-US) AppleWebKit/535.8+ (KHTML, like Gecko) Version/7.2.0.0 Safari/535.8+

Explanation: Blackberry Playbook OS 2.0.0 with native browser. String from Matt Lewandowsky - thanks.

Mozilla/5.0 (PlayBook; U; RIM Tablet OS 1.0.0; en-US) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.7 Safari/534.11+

Explanation: Rare example of a Blackberry Playbook string from the wild. String from Jim Davis - thanks.

9xxx Series

Opera/9.80 (BlackBerry; Opera Mini/4.5.33868/63.203; U; en) Presto/2.12.423 Version/12.16

Explanation: Blackberry Bold 9900 running Opera Mini (the one that needs an Opera server). String from Tony Sharp - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9320; en) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.1.0.714 Mobile Safari/534.11+

Explanation: Blackberry Curve 9320. String from Miranda du Plessis - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.448 Mobile Safari/534.8+

Explanation: Blackberry Bold 9700 (under OS6). String from Shawn Quick - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9860; en-GB) AppleWebKit/534.11+ (KHTML, like Gecko) Version/7.0.0.296 Mobile Safari/534.11+

Explanation: Blackberry Torch 9860. Jonathan hints he is not a big fan of its virtual keyboard - we're putting it mildly. String from Jonathan McCormack - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9300; fr) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.570 Mobile Safari/534.8+

Explanation: Blackberry Curve 9300. String from Manuel de Sigalony - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en-US) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.600 Mobile Safari/534.8+

Explanation: Blackberry Torch 9800 with software upgrade (Safari version number change). String from Josh Lewis - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en-US) AppleWebKit/534.1+ (KHTML, like Gecko) Version/6.0.0.246 Mobile Safari/534.1+

Explanation: Blackberry Torch 9800. String from Hecky Fedriansyah - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en) AppleWebKit/534.1+ (KHTML, Like Gecko) Version/6.0.0.141 Mobile Safari/534.1+

Explanation: Blackberry Torch 9800. String from ? (well you know who you are) - thanks.

Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en-US) AppleWebKit/530.17 (KHTML, like Gecko) Version/6.0.0.62 Mobile Safari/530.17

Explanation: Blackberry Torch 9800 (test version). String from ? (well you know who you are) - thanks.

BlackBerry9650/5.0.0.732 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/105

Explanation: Blackberry Tour 9650. String from Alex Svetlev - thanks.

BlackBerry9700/5.0.0.351 Profile/MIDP-2.1 Configuration/CLDC-1.1 VendorID/123

Explanation: Blackberry Bold II (9700). String from Alex Shirley - thanks.

BlackBerry9630/4.7.1.40 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/105

Explanation: Blackberry Tour 9630. Phone (CDMA, GSM/GPRS), SMS, Camera 2x 3.2 mpx), bluetooth, GPS, Audio (MP3, AAC, AAC+, eAAC+, WMA, WMA ProPlus), Video (MPEG4 H.263, MPEG4 Part 2 Simple Profile, H.264 (encoding and decoding 30fps), WMV). String from Isaac Grover - thanks.

BlackBerry9000/4.6.0.167 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102

Explanation: Blackberry Bold 9000. Phone (CDMA, GSM/GPRS),Wi-Fi, SMS, Camera 3x 2.0 mpx), bluetooth, GPS, Audio (.3gp, MP3, WMA9 (.wma/.asf), WMA9 Pro/WMA 10, MIDI, AMR-NB, Professional AAC/AAC+/eAAC+), Video (XviD partially supported, H.263, H.264, WMV3). String from Bradford Ben - thanks.

88xx Series

BlackBerry8330/4.3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/105

Explanation: Blackberry 8830 with version 4.3.0 of browser. Email (really), phone (CDMA for 3G, GSM/GPRS), SMS, bluetooth etc.. String from Steve Goodwin - thanks.

BlackBerry8830/4.2.2 Profile/MIDP-2.0 Configuration/CLOC-1.1 VendorID/105

Explanation: Blackberry 8830 email (surprise), phone (CDMA for 3G GSM/GPRS), SMS, bluetooth etc.. String from David Weekly - thanks.

BlackBerry8820/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/102

Explanation: Blackberry 8820 email (surprise), phone (quad band - EDGE/GPRS/GSM), Messaging (SMS,MMS), bluetooth, Wi-Fi (802.11 a/b/g), GPS etc.. String from Justice William - thanks.

87xx Series

BlackBerry8703e/4.1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/105

Explanation: Blackberry 8703e email (surprise), phone, web browser, SMS etc.. String from r.cooley - thanks.

83xx Series

BlackBerry8310/4.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/167

Explanation: Blackberry Curve 8310. String from Azrul Nizam - thanks.

BlackBerry8320/4.5.0.188 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/100

Explanation: Blackberry Curve 8320. String from Jef Juhri - thanks.

BlackBerry8330/4.3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/106

Explanation: Blackberry Curve 8330 - flashed to run on Cricket wireless CDMA. String from James Whinery - thanks.

BlackBerry8320/4.3.1 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Blackberry 8320 - much rumoured new Blackberry phone - so we will add to the rumours by suggesting email (really), wi-fi and 3.2 Mpx camera. String from Donny Sangster - thanks.

81xx Series

BlackBerry8110/4.3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/118

Explanation: Blackberry 8110 Pearl running stock browser. String from Alain Saurat - thanks.

Opera/9.50 (J2ME/MIDP; Opera Mini/4.0.10031/298; U; en)

Explanation: Blackberry 8130 Pearl running Opera Mini - phone (Dual-band 800/1900 Mhz CDMA2000 1X Ev-DO networks) with speakerphone and Voice Activated dialing, email (surprise), GPS and camera/video. String from Danny Armstrong - thanks.

BlackBerry8130/4.5.0.89 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/106

Explanation: Blackberry 8130 Pearl running stock browser. String from Ben Anderson - thanks.

71xx Series

BlackBerry7100i/4.1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/103

Explanation: Blackberry 7100i email (surprise), phone, SMS, walkie-talkie mode (!) etc.. String from A Levinson - thanks.

BlackBerry7130e/4.1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/104

Explanation: Blackberry 7130e - email (oh yeah), phone, bluetooth, web access and ... wait for it (is that a drum roll I hear?) ... ring tones (yipee) - is this one hi-tech or what. String from Mike Jones - thanks.

Blackberry Various Models

BlackBerry7250/4.0.0 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Blackberry 7250 (the one where you can talk to your email or whatever). String from John Shirey - thanks.

BlackBerry/3.6.0
BlackBerry7230/3.7.0
BlackBerry7230/3.7.1
BlackBerry7730/3.7.0
BlackBerry7730/3.7.1 UP.Link/5.1.2.5

Explanation: Various Blackberry models. String from Neil Thompson - thanks.

bSquare

Mozilla/4.0 (compatible; MSIE 5.5; Windows NT) (compatible; MSIE 5.5; Windows NT)

Explanation: bSquare reference design for a PDA (well, just how big is the screen). String from Neil Thompson - thanks.

Cricket

US cellco using network from Leap wireless, Inc. Badged white-labelled products.

Cricket-A310/1.0 UP.Browser/6.3.0.7 (GUI) MMP/2.0

Explanation: Cricket A310 (badged ZTE A310) phone. String from Tonya Boggs - thanks.

Cricket-A410/1.0 Polaris/v6.17

Explanation: Cricket A410 messaging phone. String from Patrick North - thanks.

Cricket-A200/1.0 UP.Browser/6.3.0.7 (GUI) MMP/2.0

Explanation/Update: While this is the same string as shown below (the Cricket CAPTR A200) Bruce writes that this string is only supplied when using normal page view mode, when in mobile mode it generates the follwing:

Mozilla/5.0 (en-us) AppleWebKit/525.13 (KHTML, like Gecko; Google Wireless Transcoder) Version/3.1 Safari/525.13 T

Doubtless there is perfectly sensible explanation for this behavior - it just (as with most things) happens to elude us. String from Bruce Clark - thanks.

Cricket-A200/1.0 UP.Browser/6.3.0.7 (GUI) MMP/2.0

Explanation: Cricket CAPTR A200. String from Misty Patterson - thanks.

Dell

Currently an also-ran in the mobile business - but they are trying, occasionally very trying. Using both Android and WM7 bases.

Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; DELL; Venue Pro)

Explanation: Dell Venue Pro on WM7. String from MC Mulder - thanks.

Michael also writes that if you use about:debug (about:config on pre-4399 builds) you can change UA to either Desktop or iPhone as shown below:

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_5; en-us) AppleWebKit/525.18 (KHTML, like Gecko) Version/ 3.1.2 Safari/525.20.1

Mozilla/5.0 (iPhone; U; CPU iPhone OS 2_2 like Mac OS X; en-us) AppleWebKit/525.18.1 (KHTML, like Gecko) Version/3.1.1 Mobile/5G77 Safari/525.20

clever or what.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: Dell Axim X51, ROM A12 using Windows Mobile 5 and MSIE 4 no less - is that quirky or what? String from Gordon Pettey - thanks.

Google

The search engine speaks. The maker of the first 'superphone' known to mankind (aka Nexus One). Oh well, perhaps this one didn't work out so well. But I guess if you are sitting on a gazillion billion dollars you can afford the occasional flop. Still with Nexus S and 7 they show stamina at least.

Mozilla/5.0 (Linux; Android 7.1.1; Nexus 6P Build/NMF26F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36

Explanation: Google's Nexus 6P running Android 7.1.1 (Nougat). String from Zio Cane - thanks.

Mozilla/5.0 (Linux; U; Android 4.1.1; he-il; Nexus 7 Build/JRO03D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30

Explanation: Google's Nexus 7 (Tablet thingy) running Android 4.1.1 (Jelly Bean). String from Simon Ratner - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; Nexus S Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Google's Nexus S running Android 2.3.4. String from Bruno Tournay - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus One Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Google's Nexus One running Android 2.3.6. String from E Gillie (or something like that) - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Google's Nexus One running Android 2.2 (Froyo). String from André Michaud - thanks.

Mozilla/5.0 (Linux; U; Android 2.1; en-us; Nexus One Build/ERD62) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: Google's Nexus One running Android 2.1. String from James Becker - thanks.

HP

Mozilla/5.0 (hp-tablet; Linux; hpwOS/3.0.2; U; en-US) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/234.40.1 Safari/534.6 TouchPad/1.0

Explanation: HP Touchpad with the now defunct WebOS(well this week anyway but who knows they may change their mind - again). String from Jeremy Linton - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320; HP iPAQ h6300)

Explanation: HP iPAQ 6365 - phone(multi-band GSM/GPRS 850/900/1800/1900MHz) and you do get a camera, bluetooth and WiFi. The 6315 is for the US market, 6340 for Europe and 6365 for Asia (and the rest of the world). String from Marius Petrescu - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: HP iPAQ hx4700 - one of the 6,000 models in the range and just see if you can spot the difference from the one below which we swear is a different model. String from Marco De Luca - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: HP iPAQ rx3115 - one of the 6,000 models in the range. String from Jeff Davis - thanks.

HTC

Historically HTC products were badged for use by operators. But when brands are established ego tends to take over. To say nothing of margins. However, their web site is crisp, fast, looks good and does not have all that glizy stuff that almost every other mobile supplier does and which takes about three hours to load each page. Long may it continue.

Update: Do these companies never use their own sites? OK we take it all back. HTC have finally succumbed to fashion. We got caught with a 63% load on our (admittedly modest CPU'd) PC just looking at a single page. Sigh. All because of some stupid revolving image that looked as if the phone was being thrown into a furnace. Perhaps the owner tried to access the web site from the phone - just a thought. Long live the brain dead (oops, we should have said the marketing) department.

HTC_Smart_F3188 Mozilla/5.0 (like Gecko) Obigo/Q7

Explanation: Obigo Q7 browser on HTC Smart F3188. String from Jonathan McCormack - thanks.

Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; Sensation_Z710e Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation: HTC Sensation (Z710e) on Android 4.0.3 with stock browser. String from mArvin - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; ADR6300 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: HTC Droid Incredible (ADR6300) on Android 2.3.4 with a Safari browser. String from Hayde Lande - thanks.

Mozilla/5.0 (Linux; U; Android 1.5; en-us; ADR6200 Build/CUPCAKE) AppleWebKit/528.5+(KHTML, like Gecko) Version/3.1.2

Explanation: HTC Droid Eris (ADR6200) on Android 1.5. String from Hayde Lande - thanks.

Mozilla/5.0 (Linux; U; Android 4.0.4; es-mx; HTC_One_X Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0

Explanation: Android 4.0.4 HTC One X. String from Santos Valle - thanks.

HTC_Touch_HD_T8282 Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11)

Explanation: HTC Touch HD T8282 using Windows mobile/CE base. String from Martin Chongtham - thanks.

Mozilla/4.0 (compatible: MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; 7 Trophy)

Explanation: HTC 7 Trophy with WP 7.5 (Mango) - the one that kinda works better. String from Zarek Jenkinson - thanks.

Mozilla/4.0 (compatible: MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; 7 Trophy)

Explanation: HTC 7 Trophy with WP 7.0 - the one that kinda works. String from Zarek Jenkinson - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; T-Mobile G2 Build/GRJ22) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: HTC G2 (aka Desire Z) using android 2.3.4 base. String from Leo Rubio - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.3; pl-pl; HTC Vision Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: HTC Vision using android 2.3.3 base. String from Karol Takeda - thanks.

Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; HD7)

Explanation: HTC HD7 aka HTC Gold, HTC Diamond, HTC Mondrian using Windows Mobile 7 (WM7). String from Keith ? - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; Sprint APA9292KT Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Sprint's version of the HTC Evo 4G. String from David Hoegen - thanks.

Mozilla/5.0 (Linux; U; Android 1.6; en-us; WOWMobile myTouch 3G Build/unknown) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1

Explanation: T-Mobile (or should that be AT&T) myTough 3G (badged version of HTC Magic - that why it's here). String from Misha McKinney - thanks.

Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; 7 Mozart; Orange)

Explanation: HTC Mozart. String from Zlatin Ivanov - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows Phone 6.5.3.5)

Explanation: We think this a string from an HTC Viva using Windows Mobile 6 - can anyone confirm?. String from anon - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.6) PPC; MDA Vario/3.0 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: HTC Kaiser 120 (badged by T-Mobile as MDA Vario III). String from Dan Sicomas - thanks.

HTC_HD2_T8585 Opera/9.7 (Windows NT 5.1; U; en)

Explanation: HTC HD2 with 'Sense' UI and Opera 9.7 (which probably isn't the real version number) on Windows Mobile. Interesting string - especially because of the XP OS id - part of the win7 mobile evolution or a bug? String from Alex H - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1; de-de; HTC Desire 1.19.161.5 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: HTC Desire, Android 2.1 based, touch screen 3G phone. HSPA/WCDMA (2m up (HSUPA), 7.2 Mbps down) or GSM/GPRS/EDGE (quad band), 5 mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio MP3, AAC, M4A, WMA, MIDI, WAV, WMA, OGG. String from Andreas Kanzler and Tom Trentham - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; nl-nl; Desire_A8181 Build/FRF91) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: HTC Droid Incredible with Safari browser, Android 2.2 based. String from Edward Lenssen and Stan Levine - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; ADR6300 Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: HTC Droid Incredible with Safari browser, Android 2.1 based. String from John Gallagher - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; HTC_Touch_Diamond2_T5353; Windows Phone 6.5)

Explanation: HTC Touch Diamond 2 with MSIE browser, Winmo 6.5 based. Strange XP designation in string. String from Mofizix? - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.12; MSIEMobile 6.0) USCCHTC6875

Explanation: HTC Touch PRO 2 with MSIE browser, Winmo 6.5 based. String from David Rose - thanks.

XV6850 Opera/9.50 (Windows NT 5.1; U; en)

Explanation: HTC Touch PRO with Opera browser, Winmo 6.1 based, touch screen 3G phone with slide-out keyboard. 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, AMR-NB, MIDI, MP3, WMA, WMV. String from Richard Noble - thanks.

Modzilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11) 480x640; XV6850; Window Mobile 6.1 Professional;

Explanation: HTC Touch PRO (same phone as the string above it) with MSIE browser, Winmo 6.1 based, touch screen 3G phone with slide-out keyboard. 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, AMR-NB, MIDI, MP3, WMA, WMV. String from Richard Noble - thanks.

HTC-ST7377/1.59.502.3 (67150) Opera/9.50 (Windows NT 5.1; U; en) UP.Link/6.3.1.17.0

Explanation: HTC Touch PRO 2(AT&T Tilt 2) with Opera browser, Winmo 6.1 based, touch screen 3G phone with slide-out keyboard. HSPA/WCDMA (2m up (HSUPA), 7.2 Mbps down) or GSM/GPRS/EDGE (quad band), 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, AMR-NB, MIDI, MP3, WMA, WMV. String from Jeff Sorensen - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows Phone 6.5) UP.Link/6.3.1.17.0

Explanation: HTC Touch PRO 2(AT&T Tilt 2) with MSIE 6.x browser, Winmo 6.1 based, touch screen 3G phone with slide-out keyboard. HSPA/WCDMA (2m up (HSUPA), 7.2 Mbps down) or GSM/GPRS/EDGE (quad band), 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, AMR-NB, MIDI, MP3, WMA, WMV. String from Jeff Sorensen - thanks.

htc_touch_pro2_t7373 opera/9.50 (windows nt 5.1; u; de)

Explanation: HTC Touch PRO 2, Winmo 6.1 based, touch screen 3G phone with slide-out keyboard. HSPA/WCDMA (2m up (HSUPA), 7.2 Mbps down) or GSM/GPRS/EDGE (quad band), 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, AMR-NB, MIDI, MP3, WMA, WMV. String from Petra Seitz - thanks.

HTC_Dream Mozilla/5.0 (Linux; U; Android 1.5; en-ca; Build/CUPCAKE) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1

Explanation: HTC Dream, an Android based, touch screen 3G phone. HSPA/WCDMA (2m up (HSUPA), 7.2 Mbps down) or GSM/GPRS/EDGE (quad band), 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, AMR-NB, MIDI, MP3, WMA, WMV. String from Mark Barnes - thanks.

HTC-P4600/1.2 Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11) UP.Link/6.3.1.17.0

Explanation: HTC Fuze touch screen (Windows Mobile 6.1) 3G phone. HSPA/WCDMA (tri band)(384k up, 3.6 Mbps down), GSM/GPRS/EDGE (quad band), 3.2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Audio AAC, AAC+, eAAC+, AMR-NB, AMR-WB, QCP, MP3, WMA, WAV. String from Sarah M - thanks.

HTC_Touch_Pro_T7272 Opera/9.50 (Windows NT 5.1; U; en)

Explanation: HTC Touch Pro (Model T7272), Touch screen SmartPhone with Windows Mobile 6.1 but with Opera browser, 3G phone Data - HSPA/WCDMA (2 mb up, 7.2 Mbps down), Voice Quad band - GSM/GPRS/EDGE, Speakerphone, FM radio, TWO cameras biggest 3.2mpx , bluetooth 2.0, USB, Wi-Fi (802.1b/g), GPS, Ring tones - MP3, WMA, AMR, AAC, WAV - but apparently no music player. String from Denny King - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11)

Explanation: HTC TyTN, PDA with Mobile 6.1 (IE7 no less), 3G phone Tri-band UMTS, Quad band GSM/EDGE/GPRS, Speakerphone, 2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), Music player - MP3, WMA, AMR, AAC, WAV, JAVA. String from Jason Mayfield-Lewis - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: HTC TyTN, PDA with Mobile 5.0, 3G phone Tri-band UMTS, Quad band GSM/EDGE/GPRS, Speakerphone, 2mpx camera, bluetooth 2.0, USB, Wi-Fi (802.1b/g), Music player - MP3, WMA, AMR, AAC, WAV, JAVA. String from Andrea Messini - thanks.

HTCP3300-Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: HTC Artemis 3300, PDA with Mobile 5.0, GPS, Quad band GSM/EDGE/GPRS, 2mpx camera, bluetooth 2.0, USB, FM radio, Wi-Fi (802.1b/g), Music player - MP3, WMA, AMR, AAC, AAC+, Video - MPEG4, H.263, Motion JPG. String from Emanuele Ferrarini - thanks.

Huawei

One of those chinese companies that will take over the world - one day real soon now ™.

UCWEB/2.0 (MIDP-2.0; U; Adr 2.3.6; en-US; HUAWEI_Y320-U01) U2/1.0.0 UCBrowser/9.0.2.389 U2/1.0.0 Mobile

Explanation:Huawei Ascend Y320 - string from an Iranian contributor. String from Mehdi Poormohamad - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.6; en-gb; U8815 Build/HuaweiU8815C02B895) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Huawei Ascend G300 (U8815) on Android 2.3.6 (Gingerbread). String from John Hodgson - thanks.

Kindle

The Amazon read-it-on-your-screen book device.

Mozilla/5.0 (Linux; U; en-US) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) Version/4.0 Kindle/3.0 (screen 600x800; rotate)

Explanation: Amazon Kindle Keyboard with free (as in beer?) 3G wireless. String from Bruce Hobson - thanks.

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us; Silk/1.1.0-84) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16 Silk-Accelerated=true

Explanation: Amazon Kindle Fire. Strange Mac OS X string in this. String from Dima /Che - thanks.

Mozilla/5.0 (Linux; U; en-US) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) Version/4.0 Kindle/3.0 (screen 600X800; rotate)

Explanation: Amazon Kindle 3 (third generation) Linux/Webkit combo. String from Alan Ogden - thanks.

Mozilla/4.0 (compatible; Linux 2.6.22) NetFront/3.4 Kindle/2.0 (screen 600x800)

Explanation: Amazon Kindle 2 (second generation) Linux/Netfront based book reader doing some web browsing. String from Steven Williamson - thanks.

Levono

Took over IBM's PC business years ago. Became the biggest PC manufacturer in the world recently. Not too shabby.

Mozilla/5.0 (Linux; Android 4.4.4; Lenovo TAB 2 A10-70L Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Safari/537.36

Explanation: Lenovo TAB 2 A10-70L running on android 4.4.4 with stock browser. String from Tulasi Raj - thanks.

Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; IdeaTab A2107A-H Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30

Explanation: Lenovo IdeaTab (A2107A-H) running on android 4.0.3 with stock browser. String from mArvin - thanks.

LGE

Life's Good is the LGE corporate slogan, but their web site is not. It's probably optimized for OC-192 access. Goodness knows how many years a mobile device will wait for a page load.

Mozilla/5.0 (Mobile; rv:34.0) Gecko/34.0 Firefox/34.0

Explanation: Firefox on a LG FX0 mobile running FirefoxOS 2.2. String from Jonathan McCormack - thanks.

Mozilla/5.0 (Linux; Android 7.0; LGMS210 Build/NRD90U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Mobile Safari/537.36

Explanation: LG Aristo (MS210) on android 7 (nougat) with stock browser. String from C Long - thanks.

Mozilla/5.0 (Linux; Android 4.4.2; VS415PP Build/KOT49I.VS415PP2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36

Explanation: LG Optimus Zone 2 (VS414PP) on android 4.4.2 with stock browser. String from L S - thanks.

Mozilla/5.0 (Linux; Android 5.1.1; LGMS330 Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36

Explanation: LG K7 (MS330) on android 5.1.1 with stock Chrome browser. String from Devine Smith - thanks.

Mozilla/5.0 (Linux; Android 5.0.1; LG-D852 Build/LRX21Y) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.84 Mobile Safari/537.36

Explanation: LG G3 on android 5.0.1 with stock Chrome browser. String from Stephan Lec - thanks.

LGE-LG290C/1.0[TF268435459307028557000000012602392946] UP.Browser/6.2.3.8 (GUI) MMP/2.0

Explanation: LG 290C with a modest sized serial number. String from Holly Keel - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.2; en-us; VM670 Build/FRG83G) AppleWebKit/533.1 (KHTML, like Gecko)

Explanation: LG Optimus V (model: VM670). String from Joe Dolence - thanks.

LG-LG260 POLARIS-LG260/2.0 MMP/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: LG LG260. String from Cliffann Kinkade - thanks.

LGE-LG290C/1.0[TF268435459307087980000000012298546358] UP.Browser/6.2.3.8 (GUI) MMP/2.0

Explanation: LG LG290C. String from Kelly Carter - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.2; en-us; VS910 4G Build/VS910ZV6) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: LG U900. String from Sridhar Prakash - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.2; en-us; VS910 4G Build/VS910ZV6) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: LG Revolution (VS910) on Android 2.2.2. String from Kent Deyoung - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; LG-VM670 Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: LG Optimus V (MS670). String from Michele Trovero - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; LG-MS690 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: LG Optimus (MS690). String from April Martin - thanks.

LG-GT400/v10a Browser/Teleca-Q7.1 MMS/LG-MMS-V1.0/1.2 MediaPlayer/LGPlayer/1.0 Java/ASVM/1.1 Profile/MIDP-2.1 Configuration/CLDC-1.1

Explanation: LG GT (aren't they all these days) 400. String from Alexander Elsas - thanks.

LG-GS290/V100 Obigo/WAP2.0 Profile/MIDP-2.1 Configuration/CLDC-1.1

Explanation: LG Cookie Fresh GS290 budget touch-screen phone. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; de-de; LG-P350 Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 MMS/LG-Android-MMS-V1.0/1.2

Explanation: LG P350 Optimus Me. String from Alexander Elsas - thanks.

LGE-VM510 NetFront/3.5.1 (GUI) MMP/2.0

Explanation: LG VM510 (Rumour Touch to the rest of us). String from Candra Williams - thanks.

LG/KU990i/v10a Browser/Obigo-Q05A/3.6 MMS/LG-MMS-V1.0/1.2 Java/ASVM/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: LG KU990i (Viewty Lite to the rest of us). String from Cristian Mantea - thanks.

LG-CT810/V10x IEMobile/7.11 Profile/MIDP-2.0 Configuration/CLDC-1.1 Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.11)

Explanation: LG Incite on windows Modile 6.1. String from R Au (well perhaps you know who you are) - thanks.

POLARIS/6.01(BREW 3.1.5;U;en-us;LG;LX265;POLARIS/6.01/WAP;)MMP/2.0 profile/MIDP-201 Configuration /CLDC-1.1

Explanation: LG Rumor2 (LX265). Slide-out keyboard, Voice - CDMA (dual band), Camera - 1.3 mpx, Bluetooth 2.1. String from Harald Hope - thanks.

Mozilla/5.0 (compatible; Teleca Q7; Brew 3.1.5; U; en) 240X400 LGE VX9700

Explanation: LG Dare VX9700 Touch screen Smartphone with embedded Teleca Q7 browser. Voice - CDMA, Data - CDMA2000 1xRTT/1xEV-DO rev.0/1xEV-DO rev.A, GPS, Camera - 3.2 mpx, camcorder, USB, Bluetooth 2.1, Music Player - MP3, AAC, AAC+, WMA. String from John Cline - thanks.

LGE-MX380/1.0 UP.Browser/6.2.3.9 (GUI) MMP/2.0

Explanation: Having spent a long time on the web looking for info on this device (LG MX 380) we drew a blank. String from Jared Jordan - thanks.

Mozilla/4.1 (compatible; MSIE 6.0; ) 400x240 LGE VX10000

Explanation: LG Voyager with V Cast (Verizon) IP TV, 2 Mpx camera, bluetooth, USB, Music (MP3, WMA, AAC, AAC+) player. Dual band (US) phone + speakerphone. String from Eric Bruno - thanks.

LG-LX550 AU-MIC-LX550/2.0 MMP/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: LG FUSIC (LG 550) with 1.3 Mpx camera, bluetooth, FM receiver, MP3 player and in all that hype its hard to spot any details about the phone capability. String from Tom Dalton - thanks.

LGE-CX5450 UP.Browser/6.2.2.3.d.1.103 (GUI) MMP/2.0

Explanation: LG 5450 (as opposed to the 4600, 6000 and 7000 ranges). String from Richard Podsada - thanks.

Motorola

After the fabulous RAZR series they seemed to lose it. You cannot sit on your laurels, or anything else for that matter, in the mobile business. Maybe there is life after death. The Droid series seems to have been rather well received. Perhaps not by google....so they bought them to avoid the competition - makes sense if you have a spare couple of hundred billion lying around. Now sold on to Lenovo who also bought IBM's PC business in the late sixteenth century - or there about.

MOT-EX431G/[TF359486041364033384919913852428475] Obigo/Q03C MMP/2.0

Explanation:Motorola EX431G (tracfone). String from Brenda Beck - thanks.

Mozilla/5.0 (Linux; U; Android 1.5; en-us; MB501 Build/CUPCAKE) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1

Explanation: Motorola CLIQ/MB501 on Android 1.5. String from Hayde Landa - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows Phone 6.5.3.5)

Explanation: Motorola MC9190 (rugged computer) running Windows Mobile 6.5 with PocketBrowser v3.0.8. String from Kevin Tanzer - thanks.

Mozilla/5.0 (Linux; U; Android 2.2.1; fr-ca; Milestone Build/ SHOLS_U2_05.26.1) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C)

Explanation: Motorola Milestone - top string is default lower one is in desktop mode. String from Simon Benoit - thanks.

Mozilla/5.0 (Linux; U; Android 3.0.1; de-de; MZ601 Build/H.6.1-38-5) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Motorola Xoom - german version. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; DROID2 Build/VZW) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 480X854 motorola DROID2

Explanation: Motorola Droid 2. String from Larry Johnson - thanks.

Mozilla/5.0 (Linux; U; Android 3.0.1; en-us; Xoom Build/HWI69) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Motorola Xoom running Android 3 - builds coming thick and fast. String from Andres Benites and Jimmy James - thanks.

Mozilla/5.0 (Linux; U; Android 3.0; en-us; Xoom Build/HRI39) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Motorola Xoom running Android 3. String from Andy Rathbone - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; Droid Build/FRG22D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Motorola Droid running a custom ROM based around Android 2.2 (Froyo). String from Tyson Deal - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; DROID2 GLOBAL Build/S273) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Motorola Droid 2 Global with Browser v2.2 (default browser) and Dolphin Browser HD v4.3.0. String from Kenneth Farmer - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; DROIDX Build/VZW) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 480X854 motorola DROIDX

Explanation: Motorola Droid X. String from Jake Wasdin - thanks.

MOT-COOL0/00.62 UP.Browser/6.2.3.4.c.1.128 (GUI) MMP/2.0

Explanation: Motorola MOTO W 755. String from Mike D - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1; en-us; Droid Build/ESE81) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: Motorola Droid (Android 2.1 based) with default browser. String from Jon Stephens - thanks.

Mozilla/5.0 (Linux; U; Android 2.0; en-us; Droid Build/ESD20) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/ 530.17

Explanation: Motorola Droid (Android 2.0 based) with Firefox default browser. WCDMA phone (dual band), camera (5.0 mpx, 4x zoom), Audio/video (24fps capture) - AAC, H.263, H.264, MP3, MPEG-4, WAV, WMA, eAAC+, OGG, AMR WB, AMR NB, AAC+, MIDI, Video, Bluetooth, USB, GPS (AGPS), Wi-fi. String from Andrew Armstrong - thanks.

MOT-V9mm/00.62 UP.Browser/6.2.3.4.c.1.123 (GUI) MMP/2.0

Explanation: Motorola RAZR2 V9m. WCDMA phone (dual band), camera - 2.0 mpx, Audio - MP3, MP4, WMA, Video, Bluetooth, USB, GPS (AGPS), WAP 2.0. String from MaryAnne Pucovsky - thanks.

MOT 24.1 _/00.62 UP.Browser/6.2.3.4.c.1.120 (GUI) MMP/2.0

Explanation: Motorola VZW Razr V3m with OpenWave browser. String from anaymous - thanks.

MOT-L6/0A.52.45R MIB/2.2.1 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Motorola L6i (ex V280) GSM quad band (US) Tri-band (EU). String from David McRell - thanks.

MOT-V3r/08.BD.43R MIB/2.2.1 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Motorola RAZR V3r with software version R4515_G_08.BD.43R and FLEX version SE6770AXXF1081 (the carrier details). The orginal RAZR brought back Motorla from the (almost) dead in the mobile phone business - perhaps LAZERUS would have been a better name. Phone, bluetooth, camera, java enabled and MPEG4 video recording. String from Thomas Gossens - thanks.

MOT-V3i/08.B4.34R MIB/2.2.1 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Link/6.3.0.0.0

Explanation: Motorola RAZR V3i with software version R479_G_08.B4.34R. Phone, bluetooth and 1.3mpx camera and in some parts of the world iTunes compatible (else its a Motorola supplied music player with 3 songs available - just kidding). String from Peter Köllner - thanks.

MOT-A-1C/01.01 UP.Browser/7.0.0.2.c.1.104 (GUI) MMP/2.0 UP.Link/5.1.2.16

Explanation: Motorola i860 phone - phone (surprise), camera, video, MP3 and WAV player and a two way radio function. Jeff writes " Openwave Mobile Browser 7" browser which has support for OMA Browsing 2.2 standards, including ECMAScript MP, XHTML MP, WCSS 1.1, and cHTML (protocol used for viewing i-mode content in Japan). It also supports GIF, animated GIF, JPEG, PNG, BMP and WBMP content formats as well as common audio and video streaming formats. It also supports Java downloads via MIDP-OTA 2.0, in addition to content downloads via OMA Download 1.0." String from Jeff Hales - thanks.

MOT-V620/0E.65.25R MIB/2.2.1 Profile/MIDP-2.0 Configuration/CLDC-1.0 UP.Link/6.3.1.12.0

Explanation: Motorola V620 with Phone, bluetooth, camera, email and MPEG4 video recording. String from David Freitas - thanks.

MOT-V600/0B.09.38R MIB/2.2 Profile/MIDP-2.0 Configuration/CLDC-1.0

Explanation: Motorola V600 VGA camera, Java 2, MMS, video playback etc. String from Julian Grammar - thanks.

MOT-E398/0E.20.97R MIB/2.2.2 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation:Motorola E398. Modest camera, video, MP3 player, JAVA and with a telephone that works. String from David Freitas - thanks.

mot-V3/OE.40.79R MIB/2.2.1 profile/MIDP-2.0 configuration/CLDC-1.0 UP.Link/6.2.3.15.0

Explanation: Motorola Razr V3 running a 40.79R Flash, powered by Opera-mini. Original string from Daniel Zelisko - thanks. And string information from Kyle Mathhews - again thanks.

Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; Smartphone; 176x220)

Explanation: Motorola MPx200. Motorolas first MS powered smartphone. String from Johathan McCormack - thanks.

Micromax

Major Indian supplier of mobile thingies.

Mozilla/5.0 (Linux; U; Android 5.1; en-US; Micromax Q412 Build/LMY47D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 UCBrowser/10.7.5.658 U3/0.8.0 Mobile Safari/534.30

Explanation: Micromax Canvas Fire 4G Plus Q412 (phew!). String from rohit singh - thanks.

NEC

Not exactly a major mobile player.

portalmmm/2.0 N410i(c20;TB)

Explanation: NEC n410i i-Mode mobile phone - now these guys understand short strings. The postalmm is the service name that is using the device - see notes at top of page from Charles Gutjahr. String from Nei ?? - thanks.

Nintendo

We just could not imagine naming a section Wii so we filed under Nintendo just to confuse everyone. Seriously they should have contacted the Mozilla folks when they were thinking about a name - those guys would have come up with a couple of hundred or so in the first five minutes and then changed it three times before release - but seriously, Wii, give us a break - sounds like a small Scottish thingy with a Japanese accent.

Mozilla/5.0 (Nintendo WiiU) AppleWebKit/536.28 (KHTML, like Gecko) NX/3.0.3.12.15 NintendoBrowser/4.1.1.9601.EU

Explanation:Nintendo Wii U using what looks like and inhouse WebKit based browser. String from Marc Spinntihr - thanks.

Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7498.EU

Explanation:Nintendo 3DS (firmware V.4.1.0-8E) using a Netfront browser. Richard tells us that it will still not render this page - always a sure sign of a weak browser! String from Richard Murphy - thanks.

Mozilla/5.0 (Nintendo 3DS; U; ; en) Version/1.7455.EU

Explanation:Nintendo 3DS using a Netfront browser apparently (replaces the Opera browsers used on some other Nintendo models). String from Richard Murphy - thanks.

Opera/9.30 (Nintendo Wii; U; ; 2047-7; en)

Explanation:Opera 9.30 updated version on the wii. Display is 640 x 480. String from Brendan Shillingford and Patrick Hayes - thanks.

Opera/9.10 (Nintendo Wii; U; ; 1621; en)

Explanation:Opera 9.10 production version (same version different build number) on the wii. Display is 640 x 480. String from Mark Grandi - thanks.

Opera/9.00 (Nintendo Wii; U; ; 1309-9; en)

Explanation:Opera 9 on the newly arrived Wii. Display is 640 x 480 and you can use the trial browser (production version targeted for March 2007) by watching this YouTube hack video. String from Jonathan McCormack, Mark Grandi and Alex Williams - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Nitro) Opera 8.50 [en Mozilla/4.0 (compatible; MSIE 6.0; Nitro) Opera 8.50 [ja]

Explanation:Nintendo DS browser. Nestor reminds us that the DS is actually portable whereas the Wii (not again) is a non-portable console. Hey what do we know - clearly not a lot. String from Nestor Custodio - thanks.

Nokia

Brand name sold to HMD Global (started by ex-nokia exec). We're sure there is a sensible numbering scheme for Nokia's model numbers, after all they were invented by a marketing person, and we all know how smart they are - it's just we have no idea what it is - so we're gonna re-organize into alpha-numeric order - our alpha-numeric order - which means if you think we made a mistake - you're wrong.

For those of you working on Nokia web development Zoltan Szentesi has provided this link which provides information on features supported by a range of devices - thanks. And more - is there no limit to the generosity of mankind - a list of browsers ids for the n80 range - kindly provided by Luis Albinati - thanks.

Lumia Series

Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 635) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537

Explanation:Nokia Lumia 635 again claiming to run almost every known mobile OS in the world. String from Lynn Garza - thanks.

Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 630) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537

Explanation:Nokia Lumia 630 with WP 8.1 with a MSIE 11 browser - we were a bit suspicious about the previous string - but this confirms they really do put all that stuff in there. String from Anon User - thanks.

Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 520) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537

Explanation:Nokia Lumia 520 with WP 8.1 with a MSIE 11 browser - not sure about the other stuff - Android 4.0? and 'like iPhone ..' - perhaps claiming compatability with everything that moves? String from Harlover Ajay - thanks.

Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 710)

Explanation:Nokia Lumia 710 with WP 7.5 (mango) - the one you cannot upgrade to WP8 - with a MSIE9'ish browser. String from Harlover Ajay - thanks.

2000 Series

Nokia2700c-2/2.0 (09.80) Profile/MIDP-2.1 Configuration/CLDC-1.1 UCWEB/2.0(Java; U; MIDP-2.0; en-US; nokia2700c-2) U2/1.0.0 UCBrowser/8.8.1.252 U2/1.0.0 Mobile

Explanation:Nokia 2700. String from Harlover Ajay - thanks.

Nokia2760/2.0 (06.82) Profile/MIDP-2.1 Configuration/CLDC-1.1

Explanation:Nokia 2760 with default browser. String from Thu Ya Win - thanks.

Nokia2700c-2/2.0 (07.80) Profile/MIDP-2.1 Configuration/CLDC-1.1 nokia2700c-2/UC Browser7.7.1.88/69/444 UNTRUSTED/1.0

Explanation:Nokia 2700 Classic with default browser. String from Nmnit Kumar - thanks.

Opera/9.80 (J2ME/MIDP; Opera Mini/4.1.15082/22.414; U; en) Presto/2.5.25 Version/10.54

Explanation:Nokia 2690 with default Opera 10.54. String from Emraan Khan - thanks.

3000 Series

Nokia3120Classic/2.0 (06.20) Profile/MIDP-2.1 Configuration/CLDC-1.1

Opera/8.0.1 (J2ME/MIDP; Opera Mini/3.1.9427/1724; en; U; ssr)

Explanation:Nokia 3120 Classic. Quad band GSM, Dual band WCDMA (850,2100 / 900,2100 / 850,1900) Java, FM radio, music player (MP3, MP4, AAC, eAAC+), camera (2.0 mpx), USB, bluetooth. String from Adrian - thanks.

Nokia3200/1.0 (5.29) Profile/MIDP-1.0 Configuration/CLDC-1.0 UP.Link/6.3.1.13.0

Explanation:Nokia 3200. Java, FM radio, crummy camera and a telephone that works. String from David Freitas - thanks.

Nokia3510i/1.0 (04.44) Profile/MIDP-1.0 Configuration/CLDC-1.0

Explanation: A Nokia 3510i phone - color screen + JAVA no less. String from Barry McCarthy - thanks.

Nokia3650/1.0 SymbianOS/6.1 Series60/1.2 Profile/MIDP-1.0 Configuration/CLDC-1.0

Explanation: A Nokia 3650 phone. String from Spencer Brooks - thanks.

Mozilla/4.0 (compatible; MSIE 4.0; SmartPhone; Symbian OS/1.1.0) Netfront/3.1

Explanation: NetFront 3.1 browser (45 day free trial then....$$$) on a Nokia 3650 series 60 smartphone. String from Gabriel Ronai - thanks.

5000 Series

Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 Nokia5230/51.0.002; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/533.4 (KHTML, like Gecko) NokiaBrowser/7.3.1.33 Mobile Safari/533.4 3gpp-gba

Explanation: A Nokia 5230 Nuron under Symbian. String from Ravindra Gautam - thanks.

Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 Nokia5800d-1/60.0.003; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/533.4 (KHTML, like Gecko) NokiaBrowser/7.3.1.33 Mobile Safari/533.4 3gpp-gba

Explanation: A Nokia 5800 XpressMusic under Symbian. String from Jaunty Josiah - thanks.

Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 Nokia5230/40.0.003; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/525 (KHTML, like Gecko) Version/3.0 BrowserNG/7.2.7.4 3gpp-gba

Explanation: A Nokia 5230 phone (snappy names) under the "its not open source - it is open source - its not open source" - Symbian. String from Alexander Elsas - thanks.

Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 Nokia5800d-1/50.0.005; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/525 (KHTML, like Gecko) Version/3.0 BrowserNG/7.2.3

Explanation: A Nokia 5800d phone. String from Dzekson King - thanks.

Nokia5130c-2/2.0 (07.97) Profile/MIDP-2.1 Configuration/CLDC-1.1 nokia5130c-2/UC Browser7.5.1.77/69/351 UNTRUSTED/1.0

Explanation: A Nokia 5130c phone. Not sure what is UNTRUSTED, Nokia, network or user? String from Kb Jayabaskar - thanks.

Nokia5140/2.0 (3.10) Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: A Nokia 5140 phone. String from Jure Zitnik - thanks.

Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0 Nokia5800d-1b/20.2.014; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation: A Nokia 5800 phone with Xpress Music Browser. WCDMA (Dual band) or GSM (Quad band), Wi-Fi, USB, Bluetooth, GPS, Audio - mp3, SpMidi, AAC, AAC+, eAAC+, WMA, Video - MP4, 3GP, Camera - 3.2 Mpx (3 x zoom). And did we say that you can make and receive phone calls? String from Larry Fisher - thanks.

6xxx Series

Nokia6300/2.0 (06.60) Profile/MIDP-2.0 Configuration/CLDC-1.1 Mozilla/5.0 (Java; U; ar-sa; nokia6300) AppleWebKit/530.13 (KHTML, like Gecko) UCBrowser/8.5.0.185/82/352/UCWEB Mobile UNTRUSTED/1.0

Explanation:Nokia 6300 with a brute of a string covering all the bases for compatibility. String from Mustapha Labbaci- thanks.

Nokia6212 classic/2.0 (06.20) Profile/MIDP-2.1 Configuration/CLDC-1.1

Explanation:A Nokia 6212 Classic. String from Alexander Elsas - thanks.

Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 Nokia6120c/3.83; Profile/MIDP-2.0 Configuration/CLDC-1.1) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation:A Nokia 6120 Classic - quad band phone (WCDMA/HSDPA 850/2100), camera (2 mpx), camcorder, music player (MP3, M4A, eAAC+, and WMA), buetooth, USB (2.0), and you can stream video and audio from the web. String from Ulrich Poeschl - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Symbian OS; Nokia 6680/5.04.07; 9399) Opera 8.65 [en]

Explanation:A Nokia 6680 - quad band phone 2G GSM, 3G UMTS, camera (1.3 mpx) using Opera. String from Yuris Inung - thanks.

Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413 es61i

Explanation:A Nokia E61i - quad band phone (GPRS/EDGPRS, WCDMA PS to 384K), wi-fi, camera (2 mpx), camcorder, music player (MP3 + AAC), buetooth, USB, and you can stream video and audio from the web, JAVA (MIDP 2.0. String from Theo Tester - thanks.

Nokia6230/2.0+(04.43)+Profile/MIDP-2.0+Configuration/CLDC-1.1+UP.Link/6.3.0.0.0

Explanation:A Nokia 6230 - jeez this one's got a camera, camcorder, music player, buetooth thingy and you can stream video and audio from the web...and using the extra attachement even make and receive phone calls (just kidding about the phone - honest Nokia). String from Lon Ong - thanks.

Nokia6630/1.0 (2.3.129) SymbianOS/8.0 Series60/2.6 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: If you can't beat 'em join 'em. A Nokia 6630 - Dual mode WCDMA/GSM and triband GSM phone. Now is that a choice of networks to connect to. String from Johannes Poulsen - thanks.

Mozilla/4.1 (compatible; MSIE 5.0; Symbian OS; Nokia 6600;432) Opera 6.10 [en]

Explanation:Nokia 6600 string running Opera 6.10. video capture (14 seconds) and playback, bluetooth, vga camera with 2x zoom and a telephone that works. String from Peter Köllner - thanks.

Nokia6600/1.0 (5.27.0) SymbianOS/7.0s Series60/2.0 Profile/MIDP-2.0 Configuration/CLDC-1

Explanation: Nokia 6600. Phone, VGA camera and video both with 2x zoom. String from David Freitas - thanks.

Nokia6680/1.0 (4.04.07) SymbianOS/8.0 Series60/2.6 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation:A Nokia 6680 smartphone - with two (count 'em) two cameras and video. BTW you can talk on it as well. String from Zoltan Szentesi - thanks.

Mozilla/4.1 (compatible; MSIE 5.0; Symbian OS; Nokia 6600;452) Opera 6.20 [en-US]

Explanation: A Nokia 6600 phone with an oldish version of Opera - makes sense since they are practically neighours - Opera (Norway) and Nokia (Finland). Probably don't even need phones - practically shout across the Baltic - shame Sweden gets in the way but Ericsson (Sweden) can always relay the messages! Real hotbed of High-tech up there. String from Kevin Frost - thanks.

Nokia6800/2.0 (4.17) Profile/MIDP-1.0 Configuration/CLDC-1.0 UP.Link/5.1.2.9

Explanation: A Nokia 6800 phone. String from Spencer Brooks - thanks.

7000 Series

Nokia7610/2.0 (7.0642.0) SymbianOS/7.0s Series60/2.1 Profile/MIDP-2.0 Configuration/CLDC-1.0/UC Browser7.9.1.120/27/351/UCWEB

Explanation: Nokia 7610. String from Pradip Chatterjee - thanks.

Nokia7250I/1.0 (3.22) Profile/MIDP-1.0 Configuration/CLDC-1.0

Explanation: Nokia 7250I same as 7250 (below) but with an improved camera, FM radio and phone. String from David Freitas - thanks.

Nokia7250/1.0 (3.14) Profile/MIDP-1.0 Configuration/CLDC-1.0

Explanation: A Nokia 7250 phone (the one with a built-in camera). Now does this support javascript!!. String from Anthony Chaffey - thanks.

Explanation: A Nokia 7600. You would think these wireles/mobile guys would keep the size of their strings small 'cos you guys are paying for this stuff. May be they should check out Dillo the world-leader in short strings! String from Erik Inge Bolsø - thanks.

Nokia7610/2.0 (5.0509.0) SymbianOS/7.0s Series60/2.1 Profile/MIDP-2.0 Configuration/CLDC-1.0

Explanation:A Nokia 7610 smartphone - with one camera (shame), e-mail and IM. String from Zoltan Szentesi - thanks.

8000 Series

Nokia8310/1.0 (05.11) UP.Link/6.5.0.0.06.5.0.0.06.5.0.0.06.5.0.0.0

Explanation: Nokia 8310 Black and white (ooh) with a phone and FM radio. String from David Freitas - thanks.

9000 Series

Mozilla/4.0 (compatible; MSIE 5.0; Symbian )S) Opera 6.0[en]Nokia/Series-9300

Explanation: Safari on Nokia 9300 - funny one that opens up to reveal a full keyboard. GSM (tri band) and WiFi. String from Elliot Rogers - thanks.

Mozilla/4.0 (compatible; MSIE 5.0; Series80/2.0 Nokia9300/05.22 Profile/MIDP-2.0 Configuration/CLDC-1.1)

Explanation:A Nokia 9300 smartphone - full keyboard, office applications etc., etc.. String from Christian Heusch - thanks.

Mozilla/4.0 (compatible; MSIE 5.0; Series80/2.0 Nokia9500/4.51 Profile/MIDP-2.0 Configuration/CLDC-1.1)

Explanation:A Nokia 9500 communicator - the one with the full keyboard. String from Teemu Otala - thanks.

Cx Series

NokiaC3-00/5.0 (04.60) Profile/MIDP-2.1 Configuration/CLDC-1.1 Mozilla/5.0 AppleWebKit/420+ (KHTML, like Gecko) Safari/420+

Explanation:Nokia C3 - one with lots of very small keys. String from Ani Andriani - thanks.

Ex Series

Mozilla/5.0 (SymbianOS/9.3; Series60/3.2 NokiaE55-1/034.001; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko) Version/3.0 BrowserNG/7.1.5

Explanation:Nokia E55 running native browser. Fairly modest size string for a mobile device - remember you are paying for this air-time. String from Rui Teixeira - thanks.

Opera/9.80 (S60; SymbOS; Opera Mobi/499; U; en-GB) Presto/2.4.18 Version/10.00

Explanation:Nokia E52 running Opera Mobile 10.00. String from Good Fellow (yeah, right) - thanks.

Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413 es61i

Explanation:Nokia ES61i. String from Janis Vitols - thanks.

Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.13918/488; U; en) Presto/2.2.0

Explanation:A E63 smartphone. Exactly the same as the string below - only running Opera Mini - which really likes to take over its hosts. A real cuckoo like browser with aspirations to dominating the world. String from Patrick Pigott - thanks.

Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaE63-3/100.21.110; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation:A E63 smartphone - VoIP (over WLAN/WiFi) plus quad-band GSM (850/900/1800/1900) and WCDMA (900/2100). Data GPRS/EDGE. 2.0 mpx camera. Video (.mp4, .3gp; codecs: H.263, MPEG-4 VSP). Bluetooth 2.0, micro USB. Music player (mp3, wma, aac, AAC+, eAAC+), Audio streaming (rm, .eAAC+). And an FM radio. String from Felippe Silvestre - thanks.

Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation:A E60 smartphone - VoIP (over WLAN/WiFi) plus tri-band GSM. This smartphone is probably smarter than its owners! String from Zoltan Szentesi - thanks.

Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaE90-1/07.24.0.3; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413 UP.Link/6.2.3.18.0

Explanation: Safari on Nokia E90 Mocca. GSM (Quad band) WCDMA HSDPA 2100 (3G) for 3.6m downloads, camera (3.2 Mpx) and GPS, wi-fi, Bluetooth and USB. We were going to say this string is awfully long and then looked at the download speeds - this 3G stuff is getting fast. String from Benny Schepers - thanks.

Nx Series

Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/534.13 (KHTML, like Gecko) NokiaBrowser/8.5.0 Mobile Safari/534.13

Explanation: Nokia N70 under MeeGo (aah - memories). String from Norhad Emad - thanks.

NokiaN70-1/5.0737.3.0.1 Series60/2.8 Profile/MIDP-2.0 Configuration/CLDC-1.1/UC Browser7.8.0.95/27/352

Explanation: Nokia N70 under Symbian. String from Dele Sule - thanks.

Mozilla/5.0 (SymbianOS/9.3; U; Series60/3.2 NokiaN79-1/32.001; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation: Safari browser on Nokia N97 under Symbian. String from Geoffrey Jones - thanks.

Mozilla/5.0 (SymbianOS/9.4; Series60/5.0 NokiaN97-1/20.0.019; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/525 (KHTML, like Gecko) BrowserNG/7.1.18124

Explanation: WebKit based browser on Nokia N97 under Symbian. String from Grant Cilento - thanks.

Mozilla/5.0 (SymbianOS/9.3; U; Series60/3.2 NokiaN85-1/31.002; Profile/MIDP-2.1 Configuration/CLDC-1.1) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation: WebKit based browser on Nokia N85 under Symbian. String from Janne Vaittinen - thanks.

Mozilla/5.0 (X11; U; Linux armv61; en-US; rv:1.9.1b2pre) Gecko/20081015 Fennec/1.0a1

Explanation: Alpha version of Mozilla Fennec (mobile Firefox) on Nokia N800. String from Jake Wasdin - thanks.

Mozilla/5.0 (X11; U; Linux armv7l; en-GB; rv:1.9.2a1pre) Gecko/20090928 Firefox/3.5 Maemo Browser 1.4.1.22 RX-51 N900

Explanation: Nokia N900 running Firefox under its Linux variant Maemo. String from Andy Botting - thanks.

Mozilla/5.0 (X11; U; Linux armv6l; en-us) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) tear

Explanation: Tear 0.3 (Beta) on Nokia N800 under Mer (for explanation see tear. String from Jake Wasdin - thanks.

Mozilla/5.0 (X11; U; Linux armv6l; en-us) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) midori

Explanation: Midori on Nokia n800 tablet device. So how come we know this is a N800? 'Cos Jake told us is why. OK. But if you were a super-sleuth you might figure the armv61 was meaningful. Not very meaningful. Just meaningful. String from Jake Wasdin - thanks.

Links (2.1pre31; Linux 2.6.21-omap1 armv6l; x)

Explanation: Links 2.1 preview 31 on a Nokia N800 tablet under OS2008. String from Jake Wasdin - thanks.

Mozilla/5.0 (X11; U; Linux armv6l; en-US; rv: 1.9.1a2pre) Gecko/20080813221937 Prism/0.9.1

Explanation: Prism on a Nokia N800 tablet under OS2008. String from Jake Wasdin - thanks.

Mozilla/5.0 (X11; U; Linux armv6l; en-US; rv:1.9a6pre) Gecko/20070810 Firefox/3.0a1 Tablet browser 0.1.16 RX-34_2007SE_4.2007.38-2

Explanation:Nokia N800 (Internet tablet) (v.20.0.015) running MicroB (a version of FF3) with embedded Flash 9 player. Wifi (802.11b/g) with VoIP (Skype) support, Bluetooth and USB. String from Jake Wasdin - thanks.

Opera/9.50 (J2ME/MIDP; Opera Mini/4.1.10781/298; U; en)

Explanation:Nokia N95 (v.20.0.015) running Opera 9.50 MINI (see Nokia heading note for full list). String from Ian McLoughlin - thanks.

Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaE71-1/100.07.76; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation:Nokia N71 running Safari under SymbianOS. String from Caspar van Ek - thanks.

Opera/8.01 (J2ME/MIDP; Opera Mini/3.0.6306/1528; en; U; ssr)

Explanation:Nokia N70 string running Opera 8 MINI (see Nokia heading note for full list). String from Jonathan McCormack - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; ; Linux armv5tejl; U) Opera 8.02 [en_US] Maemo browser 0.4.31 N770/SU-18

Explanation:For embedded Linux fans the Nokia 770 'Internet Tablet' connection via Wi-Fi and Bluetooth. No voice on this one but a very big screen 800 x 480. String from Michael Onyl - thanks.

NokiaN80-3/1.0552.0.7Series60/3.0Profile/MIDP-2.0Configuration/CLDC-1.1

Explanation:Stock n80 string (see Nokia heading note for full list). String from Luis Albinati - thanks.

Mozilla/5.0 (SymbianOS/9.1; U; en-us) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation:A N80 smartphone - spot the difference from the one below. The spec list is so daunting we link to it here but if you can find the right button it will make phone calls. This smartphone is probably smarter than its owners. String from Damian Casale - thanks.

Mozilla/5.0 (X11; U; Linux armv6l; en-US; rv:1.9a6pre) Gecko/20070807 Firefox/3.0a1 Tablet browser 0.1.16 RX-34_2007SE_4.2007.26-8

Explanation: Firefox on Nokia N800 Tablet PC. Wi-Fi (803.11x) and bluetooth Skpe provides the voice on this one. String from Jay Levine - thanks.

NokiaN90-1/3.0545.5.1 Series60/2.8 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Nokia N90. Phone, camera (2 mpx) and video, JAVA games, USB and bluetooth. String from David Freitas - thanks.

Mozilla/5.0 (SymbianOS/9.2; U; Series60/3.1 NokiaN95/10.0.018; Profile/MIDP-2.0 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413

Explanation: Nokia N95. Phone (WCDMA2100 (HSDPA), EGSM900, GSM850/1800/1900 MHz (EGPRS)) , camera (5 mpx) and video, JAVA enabled (Symbian), USB and bluetooth, Music: MP3/AAC/AAC+/eAAC+/WMA/M4A, FM Radio, GPS, Wi-Fi. String from Pete Seppälä - thanks.

X Series

NokiaX3-02/5.0 (05.65) Profile/MIDP-2.1 Configuration/CLDC-1.1 UNTRUSTED/1.0/p>

Explanation: A Nokia X3. String from Ranbdr Ghale - thanks.

Unsorted Nokia (we got bored)

NokiaN-Gage/1.0 SymbianOS/6.1 Series60/1.2 Profile/MIDP-1.0 Configuration/CLDC-1.0

Explanation: A Nokia n-gage - mobile gaming system - but can it make voice calls as well! String from Pisit Pluempatanakij - thanks.

Nook

The Barnes and Noble's answer to your read-it-on-your-screen needs.

Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_7;en-us) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Safari/530.17

Explanation: Color Nook - it's just too obvious really. Apparently this is when in desktop mode, when switched to mobile mode the string looks like that below. String from Duff Kurland - thanks.

nook browser/1.0

Explanation: Deep and meaningful string. Evidence suggests that it uses the standard android browser - but usage suggests it's a tad turgid in browser mode. String from Jake Wasdin - thanks.

O2 Phones/PDAs

The UK's based O2 continues the trend for service provider branded phones/PDA. The manufacturer, as with Orange below, is HTC Corporation. Seems they got the UK market cold.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; O2 Xda 2mini; PPC; 240x320)

Explanation: O2 xda II - super-duper PDA. Details on xda II thingy here. String from Abhimanyu Singh - thanks.

Obigo

Hong Kong based company build a mobile browser (Q7) as well as other HTML doodads. Q7 browser appears to use obigo's in-house code base - unusual.

HTC_Smart_F3188 Mozilla/5.0 (like Gecko) Obigo/Q7

Explanation: Obigo Q7 browser on HTC Smart F3188. String from Jonathan McCormack - thanks.

OnePlus

OnePlus is a chinese supplier of smartphones.

Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36 Musical.ly/2016040101 (Android; OnePlus A0001 5.1.1;rv:22)

Explanation: OnePlus 3t A0001. Very unusual string. Heavily customized Android base but showing a Windows vista desktop. String from Krishna Parajuli - thanks.

Orange SPV Phone

These SPV phones are manufactured for Orange by HTC Corporation.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320; SPV M700; OpVer 19.123.1.615)

Explanation: Orange SPV M700 (aka HTC P3600). Using MS Mobile 5.0. Quad band GSM, camera(s) (main 2.1 mpx), bluetooth, Wi-Fi, USB. (OpVer = Operating Version = release number). String from E.H. - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Smartphone; 240x320; SPV C600; OpVer 11.1.3.5)

Explanation: Orange SPV C600 (aka HTC Tornado) - Using MS Mobile 5.0. This one transfers data at up to 160K, has a camera (1.3 meg), bluetooth (but no WiFi) and as an afterthought makes phone calls also. (OpVer = Operating Version = release number). String from Kjeld Kahn - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320; SPV M2000; OpVer 5.31.1.124)

Explanation: Orange SPV M2000 - latest and greatest. (OpVer = Operating Version = release number). String from Johanthan McCormack - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Smartphone; 176x220; SPV C500; OpVer 4.1.3.0)

Explanation: Orange SPV phone model C500 - latest and greatest. (OpVer = Operating Version = release number). Strings and manufacturer info from Kjeld Kahn - thanks.

Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; Smartphone; 176x220)
Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Smartphone; 176x220)

Explanation: Various Orange SPV phones models (manufactured by HTC - see above). Strings from Neil Thompson - thanks.

Palm

Palm (palmOne or should we now say HP or did they sell it last week and then buy it back this week, who knows) covers the brands LifeDrive, Zire, Tungsten and Treo (Centro) and now the Pre and Pixi. The new generation (from Pre/Pixi) use WebOS and WebKit based browsers. The Blazer browsers from version 3.0 onward seem to use NetFront technology. New (2010) models use webOS and webkit browser base.

Mozilla/5.0 (webOS/1.4.5; U; en-US) AppleWebKit/532.2 (KHTML, like Gecko) Version/1.0 Safari/532.2 Pre/1.0

Explanation: Palm Pre Model P100EWW using webOS 1.4.5 and a webkit browser. String from Arif Mohammad - thanks.

PalmCentro/v0001 Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-D061; Blazer/4.5) 16;320x320

Explanation: Palm Centro (Treo). String from Arif Mohammad - thanks.

Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0; Palm-Arz1)

Explanation: Arz1 is the Palm Tungsten T3 with Palm Web Pro (by Novarra) 3.0.x. String from palmtt3 (well you know who you are) - thanks.

Mozilla/5.0 (webOS/1.3; U; en-US) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/1.0 Safari/525.27.1 Desktop/1.0

Explanation: Palm WebOS SDK for Pre and Pixi. String from Jake Wasdin - thanks.

Mozilla/5.0 (webOS/1.0; U; en-US) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/1.0 Safari/525.27.1 Pre/1.0

Explanation: Palm Pre smartphone. Touch screen + full querty keyboard. GSM (tri-band) or CDMA (800/1900) phone, Data - EVDO rev A or GPRS/EDGE/HSDPA. Bluetooth (2.1),GPS, micro-USB, 3.0 mpx Camera, Audio (AAC, AMR, MP3, QCELP, WAV), video (H263, H264, MPEG4), Wi-Fi. String from Dave Myron - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.12) /Palm 500v/v0100 UP.Link/6.3.1.13.0

Explanation: Palm Treo 500v (Otto). Phone (quad band), full querty keyboard, Bluetooth (2.0), mini-USB, 2.0px Camera, video, web access. String from Mike Brady and Stephan Sutter- thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-D062; Blazer/4.5) 16;320x320

Explanation: Palm Treo Centro with Blazer 4.5.8 browser - available in Ruby and Onynx (that's red and black to the rest of us). Tiny. Phone (dual band), full querty keyboard, Bluetooth, 1.3px Camera, video, web access, Radio (CDMA2000 EvDO). String from anonymous - thanks.

Palm680/RC1 Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-D053; Blazer/4.5) 16;320x320 UP.Link/6.3.1.17.06.3.1.17.0

Explanation: Palm Palm680/RC1. Phone (GSM/GPRS/EDGE) with speakerphone, Bluetooth, VGA Camera, video, web access and MP3 player. String from Matthew Justice - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-D053; Blazer/4.5) 16;320x320 UP.Link/6.3.1.17.0

Explanation: Palm Palm680/RC1. Phone (GSM/GPRS/EDGE) with speakerphone, Bluetooth, VGA Camera, video, web access and MP3 player. String from Matthew Justice and Lyle Haunt - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-TunX; Blazer/4.3) 16;320x448

Explanation: Palm Lifedrive (Garnett v5.4.8) on Palm OS (WiFi and Bluetooth). String from Sam McCommons - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: Palm Treo 700W. Phone, Camera (1.3mpx) with video, MP3 player, USB, Bluetooth. String from Christian Campbell - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/hspr-H102; Blazer/4.0) 16;320x320

Explanation: Treo 650 on Palm OS with Blazer 4.0 browser - the hspr-H102 is the Handspring product code for Treo 650. String from Andrew Marconi - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows 95; PalmSource; Blazer 3.0) 16;160x160

Explanation: Treo 600 on Palm OS 5.2 with Blazer 3.0 browser. String from Brian Hanes and John Jones - thanks.

UPG1 UP/4.0 (compatible; Blazer 1.0)

Explanation: Browser is Blazer v1.0 from Handspring, running under PalmOS 3.0 on a Treo 180. (You gotta read BETWEEN the characters man)

PalmSource Web Browser

Separated from palmOne in late 2003. Software only supplier.

Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; PalmSource/Palm-D050; Blazer/4.3) 16;320x320)

Explanation: Palm Blazer 4.3 on Palm TX PDA (Build-in browser) resolution 320x480. String from Jan Steffen - thanks.

Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0; Palm-Arz1)

Explanation: Palm browser 3.0 on ? maybe Palm-Arz1 says it all - what do we know! Looks like the latest version still has all the old NS4.x quirks though and they call it an update. String from Nick Bembridge - thanks.

Mozilla/4.76 (compatible; MSIE 6.0; U; Windows 95; PalmSource; PalmOS; WebPro; Tungsten Proxyless 1.1 320x320x16)

Explanation: stock Palm browser 2.0.1.1 on a Tungsten C. String from Scott Francis - thanks.

Mozilla/4.0 (compatible;MSIE 6.0;Windows95;PalmSource) Netfront/3.0;8;320x320

Explanation: PalmSource Web Browser 2.0 for OS5.1 on something, after a brief look at their web site this is the long string and gives the screen depth (8) and dimensions (320x320). The short string is shown below and doesn't give the dimensions (sounds useful!).

Mozilla/4.0 (compatible;MSIE 6.0;Windows95;PalmSource) Netfront/3.0

Explanation: PalmSource Web Browser 2.0 for OS 5.1 on something, after a brief look at their web site this is the short string and doesn't give the screen dimensions (useful or what!).

Pantech

South Korean company suppying low cost (now called a featurephone) models to many worldwide markets.

PantechP7040/JLUS04042011; Mozilla/5.0 (Profile/MIDP-2.0 Configuration/CLDC-1.1; Opera Mini/att/4.2.16479; U; en-US) Opera 9.50

Explanation: Pantech Link (P7040p) phone with lots of small keys. String from Lisa Lee - thanks.

Pocket PC

We've added all the various Windows software for mobiles - what seems to be called generically Windows Mobile - under this section.

MobileExplorer/3.00 (Mozilla/1.22; compatible; MMEF300; Amstrad; Gamma)

Explanation: Windows Mobile Explorer on a Amstad Emailer Plus which is not a mobile device but has many wierd mobile like characteristics. String from Jonathan McCormack - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: Pocket PC WM5 (Dell Axim x51v). String from Eugene Sadhu - thanks.

Mozilla/2.0 (compatible ; MSIE 3.02; Windows CE; PPC; 240x320)

Explanation: Pocket PC 2002 (Version 3.0.11171) Emulator version. String from Stefan Alcalde Garcia - thanks.

Mozilla/4.0(compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: T-Mobile MDA II (german Pocket PC) running the wildly popular Windows CE! Spot the difference from the one below. String from Stefan Alcalde Garcia - thanks.

Mozilla/4.0(compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: T-Mobile MDA I (german Pocket PC) running the wildly popular Windows CE! String from Stefan Alcalde Garcia - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: Pocket PC (Dell Axiom) running the wildly popular Windows CE! String from Neil Thompson - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; RegKing; 240x320)

Explanation: Pocket PC (?) running the RegKing tool. String from Neil Thompson - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE)

Explanation: Pocket PC (Psion NetBook Pro) running the wildly popular Windows CE! String from Neil Thompson - thanks.

Psion

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE)

Explanation: Pocket PC (Psion NetBook Pro) running the wildly popular Windows CE! String from Neil Thompson - thanks.

Mozilla/4.51 (compatible; Opera 3.62; EPOC; 640x480)

Explanation: Psion Series 7 with a vintage Opera version. String from Neil Thompson - thanks.

EPOC32-WTL/2.0 (VGA) STNC-WTL/2.0(230)

Explanation: Psion Series 7 with native browser - well I guess EPOCH is their OS name and I guess you are supposed to deduce that VGA is 640x480. String from Neil Thompson - thanks.

QTEK

QTEX is the European brand name of HTC Corpration (DoPod is the Asian brandname) PDAs. Also branded by each Operator such as Vodafone, Orange etc.

Opera/8.01 (J2ME/MIDP; Opera Mini/1.1.2277/lofi/nordic/int; O2 Xda II; en; U; ssr)

Explanation: Opera mini on the QTEK S100. String from Renaud L - thanks.

SAGEM

SAGEM (part of the French SAFRAN group) mostly supplies phones as OEM products to mobile operators.

SAGEM-myX5-2/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.0 UP.Browser/6.2.2.6.d.3 (GUI) MMP/1.0

Explanation:Sagem X5 (comparable to Ericsson T68) WAP 1.2.1 support. GSM900/GSM1800, GPRS class 8(4+1). Update from Don Beele - thanks.

Samsung

The company that seems to introduce a new model every 15ms - all with incredibly long names!

Mozilla/5.0 (Linux; Android 7.0; SM-G950U Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/64.0.3282.123 Mobile Safari/537.36

Explanation:Samsung Galaxy S8 (SM-G950U) Android 7 base. String from Tom Garza - Thanks.

Mozilla/5.0 (Linux; Android 4.4.4; SM-G360H Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.76 Mobile Safari/537.36

Explanation:Samsung Galaxy Prime Core (SM-G360H) Android 4.4.4 base. String from Pete Barry - Thanks.

Mozilla/5.0 (Linux; Tizen 2.2; SAMSUNG SM-Z9005-ORANGE/Z9005XXEAML6) AppleWebKit/537.3 (KHTML, like Gecko) Version/2.2 Mobile Safari/537.3

Explanation:Samsung SM-Z9005 (aka Redwood) Tizen 2.2 with WebKit based browser (released only in France in small numbers according to Jonathan). String from Jonathan McCormack - Thanks.

Mozilla/5.0 (Linux; Android 4.3; SGH-T999L Build/JSS15J) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.114 Mobile Safari/537.36

Explanation:Samsung SGH-T999L (aka Galaxy III S) Android 4.3 with stock Chrome browser. String from Mikey Ingram - Thanks.

Mozilla/5.0 (Linux; Android 4.2.2; SGH-I547 Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36

Explanation:Samsung SCH-I547 (aka Rugby Pro) Android (Jelly Bean) with stock Chrome browser. String from a h - Thanks.

SCH-U350/1.0 NetFront/3.0.22.2.18 (GUI) MMP/2.0

Explanation:Samsung SCH-U350 (aka Samsung Smooth) stock NetFront browser. String from Jeff Nester - Thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-I5500 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung GT-I55 (aka Galaxy 5 or Galaxy Europa) under Android 2.2 with stock browser. String from Heide Jaimes - Thanks.

Mozilla/5.0 (Linux; U; Android 4.3; en-us; SCH-I605 Build/JSS15J) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation:Samsung SCH-I605 (not a US road number but a Galaxy note 2 packaged for Verizon) under Android 4.3 with stock browser. String from Wade Burkemper - Thanks.

Mozilla/5.0 (Linux; U; Android 4.2.2; de-ch; GT-P5210 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30

Explanation:Samsung GT-P5210 (a.k.a. Galaxy 3 tablet) under Android 4.2.2 (probably called ice-cream gingerbread or something equally prosaic) with stock browser. String from Samuel Aeschbacher - Thanks.

Mozilla/5.0 (Linux; U; Android 2.3.6; es-es; GT-I8160 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung GT-I8160 (a.k.a. Galaxy Ace 2) under Android 2.3.6 (Gingerbread) with stock browser. String from Luis Tabiera - Thanks.

Mozilla/5.0 (Linux; U; Android 4.1.2; en-us; SCH-I535 Build/JZO54K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation:Samsung SCH-I535 (a.k.a. Galaxy S III) under Android 4.1.2 (Jellybean) with stock browser. String from Louis Russo - Thanks.

Opera/9.80 (Android 4.1.2; Linux; Opera Mobi/ADR-1305251841) Presto/2.11.355 Version/12.10

Explanation:Samsung GT-S6010 (a.k.a. Galaxy Music) under Android 4.1.2 (Jellybean) with Opera Mobile Classic browser - man those Opera browsers really do take over the browser id string. String from Thu Win - Thanks.

Mozilla/5.0 (Linux; U; Android 4.0.4; en-us; GT-S6010 Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation:Samsung GT-S6010 (a.k.a. Samsung Galaxy Music) under Android 4.0.4 (Ice Cream Sandwich) with stock browser. String from Thu Win - Thanks.

Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; SCH-R720 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Samsung SCH-R720 (a.k.a. Samsung Admire) under Android 2.3.4 (Gingerbread). String from Richard Luevano - Thanks.

Mozilla/5.0 (Linux; U; Android 2.3.5; en-us; SCH-I800 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation: Samsung SCH-I800 (a.k.a. Samsung Galaxy Tab 7.0") under Android 2.3.5 (Gingerbread). String from Zaden Rodriguez - Thanks.

Mozilla/5.0 (X11; CrOS armv7l 2913.260.0) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.99 Safari/537.11

Explanation: ChromeOS on a Samsung 303C Chromebook. String from Jonathan McCormack - Thanks.

Mozilla/5.0 (Linux; U; Android 4.0.4; en-ca; SGH-I757M Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation:Samsung Galaxy SII HD LTE. String from Stephen Kawamoto - thanks.

SAMSUNG-SGH-A817/A817UCKG3; Mozilla/5.0 (Profile/MIDP-2.0 Configuration/CLDC-1.1; Opera Mini/att/4.2.21648; U; en-US) Opera 9.50

Explanation:Samsung Solstice II with Opera Mini. String from Jeff Lonergan - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; SPH-D700 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung Epic 4G (SPH-D700). String from Kamil M - thanks.

SAMSUNG-GT-S3653W/S3653WJPJB3 SHP/VPP/R5 Jasmine/1.0 Nextreaming SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1 UNTRUSTED/1.0

Explanation:Samsung Corby (GT-S3653). String from Mamun Sarker - thanks.

Mozilla/5.0 (Linux; U; Android 4.0.3; nl-nl; GT-I9000 Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation:Samsung Galaxy S. String from Rienk - thanks.

SAMSUNG-SGH-A797/A797UCIIB SHP/VPP/R5 NetFront/3.5 SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1

SAMSUNG-SGH-A927/A927UCJF5; Mozilla/5.0 (Profile/MIDP-2.0 Configuration/CLDC-1.1; Opera Mini/att/4.2.19039; U; en-KR) Opera 9.50

Explanation:Samsung Flight (SGH-A927) - the first is the default Netfront browser - the second with Opera Mini. String from Marco Pannetto - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.5; de-de; SAMSUNG GT-S5830/S5830BUKS2 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung Galaxy Ace (GT S5830). String from Peter ? - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.4; en-us; GT-I9000 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung Galaxy S (gingerbread build). String from Attila Fekete - thanks.

SAMSUNG-GT-S3310/1.0 SHP/VPP/R5 NetFront/3.4 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1

Explanation:Samsung Metro GT S3310 with Netfront 3.4 update. String from Deepak Kumar - thanks.

Mozilla/5.0 (Linux; U; Android 4.0.2; en-us; Galaxy Nexus Build/ICL53F) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30

Explanation:Samsung Galaxy Nexus Prime (technically a google phone, but who ever heard of google, whereas the whole world uses Samsung phones!). The official name on launch was Galaxy Nexus but it was know prior to launch as Nexus Prime so we just included all the names in the explantion to ensure we confuse everybody. Running the latest and greatest Android 4.0.2 (Ice Cream Sandwich). String from Chris Lukas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; SGH-T959 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko Version/4.0 Mobile Safari/533.1

Explanation:Samsung SCH-R380 Freeform III. String from Ray Hindson - thanks.

sam-r380 UP.Browser/6.2.3.8 (GUI) MMP/2.0

Explanation:Samsung Vibrant Galaxy S (SGH-T959). String from Ema Kap - thanks.

samsung-gt-s5620/UC Browser7.9.0.102/69/352 UNTRUSTED/1.0

Explanation:Samsung S5620 Monte. String from Shriram Bhagat - thanks.

sam-r350 UP.Browser/6.2.3.8 (GUI) MMP/2.0

Explanation:Samsung Freedom Querty Cell Phone (aka SCH-R350). String from Ronnie Nunez - thanks.

SAMSUNG-S8003/1.0 SHP/VPP/R5 Jasmine/1.0 Nextreaming SMM-MMS/1.2.0 profile/MIDP-2.1 configuration/CLDC-1.1

Explanation:Samsung S8000 Jet (aka S8003 Jet and Jet 2) 3.1" touch screen. String from Ali Fakoor - thanks.

SAMSUNG-GT-S3310/1.0 SHP/VPP/R5 NetFront/3.4 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1

Explanation:Samsung Metro GT-S3310. String from Ali Fakoor - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.5; en-gb; GT-I9220 Build/GINGERBREAD) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung Galaxy Note with android 2.3.5. String from Alexander Elsas - thanks.

SAMSUNG-SGH-T401G/T401UDJD2 NetFront/3.4 Profile/MIDP-2.0 Configuration/CLDC-1.1[TF356986033869900000000017602160239]

Explanation:Samsung T410G. Goodness knows what the string in square barckets is? String from Amanda Herrera - thanks.

samr810 Netfront/3.4 Mozilla/5.0 like Gecko/20060426

Explanation:Samsung Finesse R810. String from Corrine Keuma-Tolentio - thanks.

SAMSUNG-SGH-i900/1.0 (compatible; MSIE 4.01; Windows CE; PPC)/UC Browser7.7.1.88

Explanation:Samsung Omnia (i900). String from Elijah Kapindula - thanks.

Mozilla/5.0 (Linux; U; Android 3.0.1; de-de; GT-P7100 Build/HRI83) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 MobileSafari/534.13

Explanation:Samsung Galaxy Tab 10.1 (Due to friendly lawyers only available in certain countries) based on Android 3.0.1 (Honeycomb). String from Thomas Berlages - thanks.

SAMSUNG-GT-S3310/1.0 SHP/VPP/R5 NetFront/3.4 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1

Explanation:Samsung GT - S3310. String from Ajay Kamble - thanks.

Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8530/S8530XXJKA; U; Bada/1.2; de-de) AppleWebKit/533.1 (KHTML, like Gecko) Dolfin/2.2 Mobile WVGA SMM-MMS/1.2.0 OPN-B

Explanation:Samsung Wave 2 GT-S8530 running Bada and using the Dolphin browser. String from Alexander Elsas - thanks.

Mozilla/5.0 (Linux; U; Android 2.2;es-es;GT-I5500 Build/ FROYO) AppleWebKit/533.1 (KHTML, like Geccko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung Galaxy Europa GT-i5500 running Android. String from Martin Campff - thanks.

Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500/S8500XXJL2; U; Bada/1.2; fr-fr) AppleWebKit/533.1 (KHTML, like Gecko) Dolfin/2.2 Mobile WVGA SMM-MMS/1.2.0 OPN-B

Explanation:Samsung Wave S8500 with Dolfin 2.2 browser under Bada 1.2 (Samsung's in-house OS). String from Hichem Frei - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-us; SCH-I800 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung SCH-I800 (Galaxy Tab 7" to the rest of us) running Android. String from Greg Lamb - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-ca; SGH-T959D Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung SGH-T959D (Galaxy S Fascinate to the rest of us). String from Marcus - thanks.

Mozilla/4.0 (BREW 3.1.5; U; en-us; Samsung; PLS_M330; POLARIS/6.1/WAP) MMP/2.0 Configuration/CLDC-1.1

Explanation:Samsung M330 - browsing with a 2 inch screen - wow. String from Colleeen Moore - thanks.

Mozilla/5.0 (Linux; U; Android 2.2; en-gb; GT-P1000 Build/FROYO) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1

Explanation:Samsung Galaxy Pad Android 2.2 device. String from Zlatin Ivanov - thanks.

Mozilla/5.0 (Linux; U; Android 2.0.1; en-us; Droid Build/ESD56) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation:Samsung SGalaxy Spica (GTI5700) Android 2.1 device running Skyfire browser 2. String from Mr Smith (yeah, right!) - thanks.

Samsung-SPHM800 AU-MIC-M800/2.0 MMP/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UNTRUSTED/1.0

Explanation:Samsung SPH-M800. Touch screen. WCDMA phone. Camera (2 mpx - 4x zoom), Audio - MP3, Video - MPEG4, Bluetooth, USB, GPS (AGPS). The UNTRUSTED probably refers to us. String from Sara Jones - thanks.

SAMSUNG-SGH-A867/A867UCHJ3 SHP/VPP/R5 NetFront/35 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1 UP.Link/6.3.0.0.0

Explanation:Samsung Eternity SGH-A867. Touch screen. Camera (3 mpx - 3x zoom), Music player (MP3). USB, Bluetooth, AGPS. Mobile TV (AT&T)String from Gail Hunnr and Robin Butis - thanks.

samsung sgh-e900 /netfront 3.2

Explanation:Samsung SGH-E900. Slider. Tri band (900/1800/1900), Data (EDGE Class 10, GPRS Class10) display 240 x 320px, Camera (2 mpx - 4x zoom), video (AAC, H.263, MPEG4), Bluetooth, USB (1.1), music player (ACC, ACC+, MP3, WMA, e-ACC+). String from Roberta Coulter - thanks.

TELECA-/2.0 (BREW 3.1.5; U; EN-US;SAMSUNG; SPH-M800; Teleca/Q05A/INT) MMP/2.0 Profile/MIDP-2.1 Configuration/CLDC-1.1

Explanation:Samsung Instinct (SPH-M800). Touch screen device. Dual band (900/1900), Data (CDMA2000 1xRTT/1xEV-DO rev.0/1xEV-DO rev.A) display 240 x 432px, Camera (2 mpx), video (H.264, MPEG4), Bluetooth, USB, music player (MP3, AAC, AAC+, WMA). String from Joe Petrie - thanks.

Update: From Mike Royalty - thanks. The above string is generated when the phone is in mobile mode when in standard mode the following string is generated:

Mozilla/4.1 (U; BREW 3.1.5; en-US; Teleca/Q05A/INT)

SAMSUNG-SGH-A737/UCGI3 SHP/VPP/R5 NetFront/3.4 SMM-MMS/1.2.0 profile/MIDP-2.0 configuration/CLDC-1.1 UP.Link/6.3.0.0.0

Explanation:Samsung A737. Quad band (850/900/1800/1990) display 220 x 176px Camera (1.3 mpx), video (MPEG4), Bluetooth, music player. String from Joe Petrie - thanks.

Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 MG(Novarra-Vision/6.9)

Explanation:Samsung D600. Quad band (850/900/1800/1990) display 240 x 320px Camera (2.0 mpx), video (MPEG4), USB, Bluetooth, music player (MP3/AAC/AAC+), Wap 2.0 Browser GPRS/EDGE data. String from Nick Wiseman - thanks.

SCH-A950+UP.Browser/6.2.3.2+(GUI)+MMP/2.0

Explanation:Samsung SCH A950. Camera (1.3 mpx), video, USB, Bluetooth, music player (AAC) and a speakerphone with a telephone that works (850/1990). Samsung modified OpenWave browser (UP.Browser). String from Becky Granger - thanks.

SAMSUNG-SGH-D900/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Browser/6.2.3.3.c.1.101 (GUI) MMP/2.0

Explanation:Samsung SGH D900. Camera (3 mpx), video, USB, Bluetooth, music player (MP3, AAC, AAC+, and eAAC+) and a speakerphone with a telephone that works. Samsung modified OpenWave browser (UP.Browser). String from Fco Nunez - thanks.

SAMSUNG-SGH-D900/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Browser/6.2.3.3.c.1.101 (GUI) MMP/2.0 UP.Link/6.3.1.12.0

Explanation:Samsung SGH D900. Camera (3 mpx), video, USB, Bluetooth, music player (MP3, AAC, AAC+, and eAAC+) and a speakerphone with a telephone that works. The UP.link part of this string seems to be an earlier OpenWave browser but may want to check this samsung page. String from David Freitas - thanks.

SEC-SGHE900/1.0 NetFront/3.2 Profile/MIDP-2.0 Configuration/CLDC-1.1 Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1378; nl; U; ssr)

Explanation: Samsung e900 (phone, camera, browser etc., etc.) with one of those new fangled sliders rather than a clamshell design. Strings show both the default (Netfront) browser and Opera Mini. Strings from John Overmars - thanks.

SEC-SGHE600 UP.Link/6.3.1.12.0

Explanation:Samsung SGH E600. Modest camera, JAVA and with a telephone that works. String from David Freitas - thanks.

SEC-SGH600

Explanation: Samsung e600 (phone, camera, browser etc., etc.) clamshell design. Strings from Rafael Varela - thanks.

SEC-SGHD410

Explanation: Samsung SGH-D410. String from Barry McCarthy - thanks.

Mozilla/4.0 (compatible; MSIE 6.0; j2me) ReqwirelessWeb/3.5

Explanation: Samsung sph-a 620/vga 1000 from sprintpcs. String from Miranda Miller - thanks.

AU-MIC/1.1.4.0 20722 MMP/2.0

Explanation: Samsung N400 cellphone. String from Jason Luke - thanks.

Sanyo

OPENWAVE UNTRUSTED/1.0

Explanation: Sanyo SCP-6760 Incognito with NetFront 3.5.1 browser. This may be the same device as below (SCP-6760) but in Incognito mode! String from Regina Gaines - thanks.

Mozilla/4.0 (BREW 3.1.5; U; en-us; Sanyo; NetFront/3.5.1/AMB) Boost SCP6760

Explanation: Sanyo SCP-6760 Incognito with NetFront 3.5.1 browser. String from Tim Claunch - thanks.

Opera/9.50 (J2ME/MIDP; Opera Mini/4.0.10031/230; U; en)

Explanation: Sanyo SCP3200 with Opera Mini. Dual-Band GSM plus analog (800mhz mode), Blutooth and a bunch of restriction options for parental control - and kid friendly colors. String from Eric Mitchell - thanks.

Sharp

Vodafone/1.0/703SH/SHG001 Browser/UP.Browser/7.0.2.1 Profile/MIDP-2.0 Configuration/CLDC-1.1 Ext-J-Profile/JSCL-1.2.2 Ext-V-Profile/VSCL-2.0.0

Explanation: SHARP 703sh thingie. UMTS, GSM phone, UMTS and GPRS data, 1.3 mpx camera/video, USB. Do we have a world record for browser string length here? Bet this really speeds up wireless browsing. String from Louise McCormack - thanks.

SHARP-TQ-GX10i/1.0 Profile/MIDP-1.0 Configuration/CLDC-1.0 UP.Browser/6.1.0.6.1.d.1 (GUI) MMP/1.0

Explanation: SHARP-TQ-GX10i thingie. String from Neil Thompson - thanks.

Mozilla/4.0 (compatible; MSIE 5.0; Linux 2.4.18-rmk7-pxa3-embedix armv5tel; 480x640) Opera 6.0 [en]

Explanation: Opera 6.0 on a Sharp Zuarus Linux based SL-C750 thingie. String from Boris Bogdanov - thanks.

Siemens

SIE-S65/12 UP.Browser/7.0.0.1.c3 (GUI) MMP/2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Link/5.1.2.16

Explanation: Siemens S65 phone bluetooth, 1.3mpx camera and video. String from Peter Köllner - thanks.

SIE-ME45/05 UP.Browser/5.0.1.1.102 (GUI)

Explanation: Siemens ME45 phone - seems to be able to make calls from under water! Well it says its water resitant. Seems to us that many of the cell calls we get these days do sound as if they are coming from under water - perhaps they are! String from Pisit Pluempatanakij - thanks.

SIE-S55/16 UP.Browser/6.1.0.5.c.4 (GUI) MMP/1.0 UP.Link/5.1.2.10

Explanation: Siemens S55 Smartphone. String from Stefan Alcalde Garcia - thanks.

ReqwirelessWeb/3.2 S55

Explanation: WebViewer on a Siemens S55. String from Boris Bogdanov - thanks.

Sony

This section includes the historic Sony/Ericsson strings from the joint venture that is no more (officially folded into the Sony range from October 2011). For information about SonyEricsson strings use this list of documents. The string RXXX apparently defines the version of the phone.

Mozilla/5.0 (Linux; Android 6.0.1; E5823 Build/32.2.A.0.224) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.125 Mobile Safari/537.36

Explanation: Sony Z5 Compact with Chrome browser. String from Emile Prillar - thanks.

Mozilla/5.0 (Linux; Android 5.1.1; D6603 Build/23.4.A.1.264) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.83 Mobile Safari/537.36

Explanation: Sony Xperia Z3 on Android Lollipop. String from Thu Win - thanks.

Mozilla/5.0 (Linux; U; Android 2.3.4; en-ca; SonyEricssonMK16a Build/4.0.2.A.0.58) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0Mobile Safari/533.1

Explanation: Sony Ericsson Xperia Pro Mk16a (catchy!). String from Stephen Kawamoto - thanks.

Mozilla/5.0 (Java; U; en-us; sonyericssonk800i) UCBrowser8.2.1.144/70/352/UCWEB Mobile

Explanation: Sony Ericsson K800i running UC Browser in mobile mode. String from Thu Win - thanks.

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2;.NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2) UCBrowser8.2.1.144/70/352

Explanation: Sony Ericsson K800i running UC Browser in desktop mode. String from Thu Win - thanks.

Opera/9.80 (J2ME/MIDP; Opera Mini/7.28870/27.1530; U; en) Presto/2.8.119 Version/11.10

Explanation: Sony Ericsson K800i running Opera Mini Next (version 7, beta - April 2012). String from Thu Win - thanks.

SonyEricssonT280i/R1CB002 TelecaBrowser/Q04C1-1 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Sony Ericsson T280i running native browser. String from Thu Win - thanks.

Opera/9.80 (J2ME/MIDP; Opera Mini/6.5.26955/26.1283; U; en) Presto/2.8.119 Version/10.54

Explanation: Sony Ericsson K800i running Opera Mini 6.5. String from Thu Win - thanks.

sonyericssonk800i/UC Browser8.0.3.107/70/352

Explanation: Sony Ericsson K800i running the UC Browser in WAP mode. String from Thu Win - thanks.

sonyericssonk800i/UC Browser7.9.0.102/70/352

Explanation: Sony Ericsson K800i running the UC Browser. String from Thu Win - thanks.

Mozilla/5.0 (Linux; U; Android 1.6; de-de; SonyEricssonU20i Build/1.1.A.0.8) AppleWebKit/528.5+ (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1

Explanation: Sony Ericsson Xperia Mini X10 (Android 1.6). String from Alexander Elsas - thanks.

Opera/9.80 (J2ME/MIDP; Opera Mini/6.0.24093/24.741; U; en) Presto/2.5.25 Version/10.54

Explanation: Sony Ericsson K800i (catchy name), Opera mini 6.0. String from Thu Win - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1; de-de; E10i Build/2.0.2.A.0.24) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: Sony Ericsson Xperia mini X10 (Androd 2.1). String from Alexander Elsas - thanks.

Opera/9.80 (J2ME/MIDP; Opera Mini/5.1.22296/22.414; U; en) Presto/2.5.25 Version/10.54

Explanation: Sony Ericsson K800i (catchy name), Opera mini 5.1. String from Thu Win - thanks.

SonyEricssonG700/R100 Mozilla/4.0 (compatible; MSIE 6.0; Symbian OS; 958) Opera 8.65 [ru]

Explanation: Sony Ericsson G700 smartphone with Symbian OS (UIQ3), Opera mobile 8.65 [ru]. String from Markin Eugeny - thanks.

SonyEricssonW595/R3EA Browser/NetFront/3.4 Profile/MIDP-2.1 Configuration/CLDC-1.1 JavaPlatform/JP-8.3.3

Explanation: Native browser (Access NetFront) for Sony Ericsson W595. String from Marina Chiklauri - thanks.

SonyEricssonK800i/R8BF Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: Native browser (Access NetFront) for Sony Ericsson K800i (same as that shown immediately below). Extremely poor specification on SE website. String from Thu Win - thanks.

Opera/9.80 (J2ME/MIDP; Opera Mini/5.0.16823/1428; U; en) Presto/2.2.0

Explanation: Opera Mini 5.0.16823/1428 on Sony Ericsson K800i. Note the 9.80 version wheeze (same string shown under Opera strings for reference. String from Thu Win - thanks.

Opera/9.60 (J2ME/MIDP; Opera Mini/4.2.13337/504; U; en) Presto/2.2.0

Explanation: Same phone (W960i) as below with Opera Mini. String from David Ginger - thanks.

SonyEricssonK610i/R1CB Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: NetFront browser on K610i. 3G speakerphone (GSM/900/1800/1900/UMTS 2100). 2M Px Camera (with 2.5X zoom), camcorder, media player, bluetooth, FM radio, USB, RSS Feed, email. String from Jorgen Slings - thanks.

SonyEricssonK608i/R2L/SN356841000828910 Browser/SEMC-Browser/4.2 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: NetFront browser on K608i. 3G (GSM/900/1800/1900/UMTS). 1.3M Px Camera, camcorder, media player, bluetooth, FM radio, USB. String from Jorgen Slings - thanks.

SonyEricssonK550i/R1JD Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: NetFront browser on K550i. 3G speakerphone Quad (GSM/850/900/1800/1900/EDGE). 2M Px Camera (with 2.5X zoom), camcorder, media player, bluetooth, FM radio, USB. String from Jorgen Slings - thanks.

SonyEricssonW850i/R1ED Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: NetFront browser on SE w850i. 3G speakerphone (GSM/900/1800/1900/UMTS). 2M Px Camera (with 2.5X zoom), camcorder, media player, bluetooth, FM radio, USB. String from Simon M - thanks.

Opera/8.01 (J2ME/MIDP; Opera Mini/2.0.4509/1558; en; U; ssr)

Explanation: Opera Mini browser 2.0 on K750. 2M Px Camera (with 2.5X zoom), camcorder, media player, bluetooth, FM radio and yes, you guessed - a telephone - UMTS and GSM. String from David Amoros - thanks.

SonyEricssonK610i/R1CB Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1 UP.Link/6.2.3.15.0

Explanation: Model K610i. 2M Px Camera (with 2.5X zoom), camcorder, media player, bluetooth and yes, you guessed - a GSM telephone. String from Vladimir Knobel - thanks.

Opera/8.01 (J2ME/MIDP; Opera Mini/1.0.1479/HiFi; SonyEricsson P900; no; U; ssr)

SonyEricssonK700i/R2N SEMC-Browser/4.0.1 Profile/MIDP-2.0 Configuration/CLDC-1.1

Explanation: K700i. Camera (with 4X zoom), camcorder, FM radio, MP3 player and oh, by the way a telephone. This one from Vodaphone. String from Neil Chalk - thanks.

Opera/8.01 (J2ME/MIDP; Opera Mini/1.0.1479/HiFi; SonyEricsson P900; no; U; ssr)

Explanation: Opera Mini browser on Sony Ericsson P900. String from Peter Karlsson - thanks.

SonyEricssonP1i/R100 Mozilla 4.0 (compatibile; MSIE 6.0; Symbian OS;768) Opera 8.65 [hr]

Explanation: Sony Ericsson P1i smartphone with Symbian OS (UIQ3) and Opera (mobile) 8.65 for Symbian OS ("768") [hr] is for Croatian. String from Tomislav Tkalcevic - thanks.

SonyEricssonT200/R101

Explanation: Stock T200 model. String from Erik Inge Bolsø - thanks.

Mozilla/4.1 (compatible; MSIE5.0; Symbian OS); Opera 6.02 [de]

Explanation: P800 Smartphone with a camera. Wonder if Opera does tabbed browsing on this! String from Stefan Alcalde Garcia - thanks.

SonyEricssonP800/R101 Profile/MIDP-1.0 Configuration/CLDC-1.0
SonyEricssonP900/R101 Profile/MIDP-2.0 Configuration/CLDC-1.0
SonyEricssonT610/R201 Profile/MIDP-1.0 Configuration/CLDC-1.0

Explanation: Various Sony/Ericsson (or even Ericsson/Sony) models. String from Neil Thompson - thanks.

Sony

The PlayStation series of consoles and stuff (now including - from October 2011 - the ex-JV Sony/Ericsson handsets).

Mozilla/5.0 (Linux; U; Android 3.2; de-de; Sony Tablet P Build/THMD01900) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Sony P dual 5.5" touch screen tablet thingy based on Android 3.2. String from Alexander Elsas - thanks./p>

Mozilla/5.0 (Linux; U; Android 3.2; en-gb; Sony Tablet S Build/THMD01900) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Sony P 9.4" touch screen tablet thingy based on Android 3.2. String from Alexander Elsas - thanks./p>

Mozilla/5.0 (PLAYSTATION 3; 1.00)

Explanation: The playstation 3.0 surfing the net. String from Jonathan McCormack - thanks./p>

Mozilla/4.0 (PSP (PlayStation Portable); 2.00)

Explanation: The good old playstation 2.0 portable in its on-line mode - probably my son crawling over the internet. String from Jia-Yong Ou - thanks.

Sprint

Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.6) (compatible; MSIE 6.0; Windows CE; IEMobile 7.11) Sprint:PPC6800

Explanation: Sprint Mogul series model PPC-6800 Pocket PC based on the MS Mobile 6 release. WiFi (11.b/g), USB, Bluetooth 2.0, camera (2 mpx), MSIE 7.x, slide-out QWERTY keyboard, and oh, by the way a CDMA dual band telephone (data is EVDO Rev 0 - Rev A is software upgrade). Branded version of HTC PPC6800. String from Steve Hutch - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; Sprint:PPC-6700; PPC; 240x320)

Explanation: Sprint Vision series model PPC-6700 Pocket PC based on the MS Mobile 5.0 release. WiFi, Bluetooth, camera, camcorder, MSIE 4.0 and oh, by the way a telephone. Branded version of a UT Starcom product (a.k.a. HTC PPC6700). String from Chris C - thanks.

T-Mobile

Mozilla/4.0 (compatible; MSIE 5.5; Windows CE; PPC; 240x320)

Explanation: Badged version of the HTC wizard line. Phone (Really!) (GPRS, EDGE), WiFi (unspecified version), miniUSB, Bluetooth 2.0 and Camera (1.3 Mp), slide-away keyboard . String from Josh Cheshire - thanks.

Tear

WebKit based Browser written in Vala (an OS C# alternative from GNU which compiles to C) and the default based browser for Maemo/Mer (one of the many Linux OS variants competing for the Mobile web OS of choice - Maemo is sponsored by Nokia and Mer seems to be some form of Maemo/Ubuntu/Debian developement for the mobile world - seems to us that was Maemo's goal also).

Mozilla/5.0 (X11; U; Linux armv6l; en-us) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) tear

Explanation: Tear 0.3 (Beta) on Nokia N800 under Maemo. String from Jake Wasdin - thanks.

Toshiba

Another PC/Laptop supplier rushing into the tablet space.

Mozilla/5.0 (Linux; U; Android 3.1; de-de; AT100 Build/HMJ37) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13

Explanation: Toshiba AT100-100 10.1" tablet under android 3.1. String from Alexander Elsas - thanks.

UCWEB

Java based mobile browser from Chinese company UC mobile. Lots of functionality and is available in an english version. Available on a huge number of handsets.

Mozilla/5.0 (Linux; U; Android 4.2.1; en-US; Lenovo A766 Build/JOP40D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 UCBrowser/10.0.0.488 U3/0.8.0 Mobile Safari/533.1

Explanation: UCWEB UCbrowser v 10.0.0488 on Lenovo A766 running android 4.2.1. String from Tengku Johan - thanks.

NOKIAN95/UCWEB7.0.2.37/28/800

Explanation: UCWEB v 7.0.2.37 on Nokia N95. String from Siva Natham - thanks.

Vodafone

Badged devices identified by mobile operators name.

Vodafone/1.0/HTC_prophet/2.15.3.113/Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: Badged version of the HTC Prophet line. Phone (Really!) (GSM. GPRS, EDGE), dual mode WiFi (11.b and .g), miniUSB, Bluetooth 2.0 and Camera (2 x Mp) . String from Jose Gomez - thanks.

Windows Phone 7

MS come-back in the mobile world? Other WP strings under various vendors. Some places we see Windows Mobile some Windows Phone - since the string uses WP7 we'll assume it means Phone - or perhaps Phenomenal or Phantasic or ....Phrightening?

Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; XBLWP7; ZuneWP7)

Explanation: Windows Mobile 7 Mango beta in desktop mode. String from Tobie Frish - thanks.

ZTE

Major Chinese telecom supplier - currently modest (relatively) sideline in handsets which are only sold to 140 countries - well we said relatively modest!

Mozilla/5.0 (ZTE-E_N72/N72V1.0.0B02;U;Windows Mobile/6.1;Profile/MIDP-2.0 Configuration/CLDC-1.1;320*240;CTC/2.0) IE/6.0 (compatible; MSIE 4.01; Windows CE; PPC)/UC Browser7.7.1.88

Explanation: ZTE E N72 based on Windows Mobile 6. String from Sigit Hari Setiawan - thanks.

Mozilla/5.0 (Linux; U; Android 2.1-update1; de-de; BASE lutea Build/ERE27) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17

Explanation: ZTE Blade in a badged version named BASE lutea smartphone (German version of Orange San Francisco) running Android 2.1. String from Alexander Elsas - thanks.

Unsorted Mobile Browser List

The following list will be sorted by browser over time - lots of time!

Mozilla/4.76 [en] (PalmOS; U; WebPro/3.0.1a; Palm-Cct1)

Explanation: Palm Web Pro 3.0.1a under PalmOS 5.2.1 on Tunsten E (TI/ARM processor based). String from Boris Bogdanov - thanks.

Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320)

Explanation: PocketIE under Widows CE 2002 on a Toshiba e740 with the Intel XScale processor. String from Boris Bogdanov - thanks.

Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; PPC; 240x320)

Explanation: PocketIE (standard browser) under Windows CE 2003 on the Pocket PC. String from Boris Bogdanov - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; PPC; 240x320)

Explanation: PocketIE + MultiIE 3.0 using Widows CE 2003 on ?. String from Boris Bogdanov - thanks.

Mozilla/4.0 (compatible; MSIE 4.01; Windows CE; MSN Companion 2.0; 800x600; Compaq)

Explanation: Compaq iPAQ Home Internet appliance - we think. String from Dan Johnson - thanks.

Mozilla/4.0 (compatible;MSIE 6.0;Windows95;PalmSource) Netfront/3.0;8;320x320

Explanation: PalmSource Web Browser 2.0 on OS5.1 on something, after a brief look at their web site this is the long string and gives the screen dimensions.

Mozilla/1.22 (compatible; MSIE 5.01; PalmOS 3.0) EudoraWeb 2.1

Explanation: Browser from Eudora, PalmOS 3.0 on a Treo 180. Does the above string mean they have lousy Netscape compatability and great MSIE compatability?

Mozilla/4.74 [en] (X11; I; ProxiNet)

Explanation: Browser is Zero Grvaity's Skysurf, running under PalmOS 3.0 on a Treo 180. (Man is this a string or what, got a little bit of everything in here, Unix, wierd object model and ProxiNet?!!)

Mozilla/2.0 (compatible; Elaine/3.0)

Explanation: Standard web browser function for PalmPilot i705. Ok we got that, but who is Elaine?! String from Shawn Eyer - thanks.

Mozilla/2.0 (compatible; MSIE 3.02; Windows CE; 240x320)

Explanation: MSIE 3.02 on a Pocket PC 2002. I guess the 240x320 is the available screen size. Goodness knows what DOM this baby supports. Anyone old enough to remember MSIE 3!



Problems, comments, suggestions, corrections (including broken links) or something to add? Please take the time from a busy life to 'mail us' (at top of screen), the webmaster (below) or info-support at zytrax. You will have a warm inner glow for the rest of the day.

Tech Stuff

RSS Feed Icon

If you are happy it's OK - but your browser is giving a less than optimal experience on our site. You could, at no charge, upgrade to a W3C standards compliant browser such as Firefox

Search

web zytrax.com

Share

Icons made by Icomoon from www.flaticon.com is licensed by CC 3.0 BY
share page via facebook tweet this page

Page

email us Send to a friend feature print this page Display full width page Decrease font size Increase font size

Mobile Stuff

mobile things
Android
AvantGo
Blazer
Bolt
DoCoMo
Dolphin
EudoraWeb
ftxBrowser
Minimo
NetFront
PIE
OpenWave
Obigo/Q7
PocketLink
PalmSource
Plucker
Xiino
Tear
UCWEB
Telephones/PDAs
Others

Cellcos/Vendors

Android aThingies
Apple iThingies
Blackberry
Google Nexus
HTC
Kindle
Lenovo
LGE
Motorola
Micromax
Nokia
OnePlus
Samsung
Windows Phone 7
ZTE

Browsers

1X
Acorn Browse
Act 10
Amaya
AmigaVoyager
Android
APT-GET
Arachne
Arora
Avant Browser
AvantGo
Aweb (Amiga)
Bluefish
Brave
Browsex
Camino
Charon
Check&Get
Chimera
Chrome (Google)
ChromePlus
Chromium (Google)
Comodo Dragon
Conkeror
Contiki
Curl
Democracy
Dillo
DocZilla
edbrowse
Elinks (text)
Emacs
Enigma
Epiphany
fetch
Firefox
Flock
ftxBrowser
Galeon
Gnuzilla
Google
GreenBrowser
HotJava
HTTPClient
Hv3
IBrowse
iCab
ICE (Borland)
IceWeasel/IceCat
IPD (AlertSite)
Iron
Kazehakase
Kkman
K-Meleon
Konqueror
Links (text)
Lobo
Lynx (text)
Maxthon
midori
Min
Mosaic
Mothra
Mozilla
MS Explorer
MSIE Clones
muCommander
NetPositive
Netscape
Netsurf
OffByOne
OmniWeb
One Laptop per Child
Opera (+Mini)
Oregano
Oxygen
Palemoon
PalmSource
Phoenix
PrintSmart (HP)
Prism (Mozilla)
Proxomitron
retawq
Safari
Secure Web Browser
Shiira
SiS (Apple)
Sleipnir
SlimBrowser
Smartbro
Spicebird
Songbird
SRWare Iron
Stainless
Strata
Surf
Swiftfox
Sylera
Vision
Vivaldi
w3CLineMode (text)
w3m (text)
Waterfox
WebCapture (Adobe)
WebOSbrowser
WebPositive
WebTV (MS)
Wget
Xenu
Xiino Xmaxima Yandex

Sections

HBOs
W3C validation
unpleasant things
mystery strings
in the wild
change ua's

Browser Stats

Upsdell
w3schools

Browser Info

Mozilla UA Strings
evolt browser archive

Site

CSS Technology SPF Record Conformant Domain
Copyright © 1994 - 2024 ZyTrax, Inc.
All rights reserved. Legal and Privacy
site by zytrax
hosted by javapipe.com
web-master at zytrax
Page modified: January 20 2022.