user10736308
user10736308

Reputation:

Which web browser user agent strings do not begin with Mozilla or Opera?

As we know, not all user agent strings begin with "Mozilla/". Some begin with "Opera/". But are these two the only legitimate web browser compatibility tokens, or are there other browsers that begin their user agent strings with other tokens?


Note.

I'm only looking for unchanged user agent strings of current web browsers, not "Dalvik" or the CFNetwork user agents ("Safari/"), not bots ("Twitterbot/") or other apps ("Wget/"), not whatever users may change their user agents to, etc. I'm also not looking for historic browsers like "Mosaic/".

Upvotes: 8

Views: 718

Answers (2)

RecurringError
RecurringError

Reputation: 60

A fairly complete and free list containing commonality as well.

https://developers.whatismybrowser.com/useragents/explore/software_type_specific/web-browser/2

Upvotes: 0

A. STEFANI
A. STEFANI

Reputation: 6737

You may take a look here, where you can find a complete listing of Web Browser user agents sorted by:

  • Software
  • Operating Systems
  • Operating Platforms
  • Software types
  • Hardware types
  • Layout engines

If you goal is to list all legitimate web browser "compatibility token", you may download the whole list as a MySQL DB (here) then do query according to your need.

Upvotes: 2

Related Questions