Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of browser as the are listed in IIS logs

Greetings,

I am looking for a list of browser entries as they are listed in an IIS log to help identify the different versions of browsers which visit our sites. Perhaps there isn't a list but an algorithm which should be used to identify different browsers and their versions.

Please note that I am not looking for a log analyzer, but the different values I can expect for browser version in a log. If their isn't a list of these, is there an algorithm I can follow to determine what the browser is and it's version?

like image 380
Brettski Avatar asked Nov 05 '22 20:11

Brettski


1 Answers

The string you're looking for is called the user agent. Whenever you're dealing with these, it is helpful to remember that it can be changed by the end user and therefore shouldn't be completely trusted. With that said, here are some good resources:

  • Common User Agents
  • A big list of less common user agent strings
  • A user agent analyzer
like image 125
Kevin Avatar answered Nov 14 '22 20:11

Kevin