What is all the browser agent stuff?

后端 未结 2 1879
离开以前
离开以前 2021-01-24 02:47

I am new to ASP.NET and wanted to capture details about people on my site. So I capture the Request.UserAgent attributes to file. Can anyone explain how to deconstr

相关标签:
2条回答
  • 2021-01-24 03:30

    I think this website will be very helpful to you: http://www.useragentstring.com/pages/useragentstring.php

    You can copy and paste user agents into this index page and have it do a simple analysis. http://www.useragentstring.com/index.php

    0 讨论(0)
  • 2021-01-24 03:32

    A user agent is used to identify the application that accessed a specific web site or service.

    The common pattern:

    Mozilla/[version] ([system and browser information]) [platform] ([platform details]) [extensions]

    Source for this information: Wikipedia

    Since the user agent is exposed by a commonly accessible string, this can be modified easily (aka spoofed) - a method that can be easily done in .NET by directly modifying the UserAgent property - that way you can, for example, identify your download manager as Internet Explorer while it doesn't have anything to do with it. Not saying it's a good practice since it messes with visit stats, but you need this from time to time - for example, to access a web stream from a website that is only accessible through an app and not through a web browser. All you need is to know the user agent for that app and then pass it inside your own application.

    A pretty decent source of information for your case would be MSDN. In case you are wondering why IE is sometimes identified as Mozilla, here is what Microsoft has to say in their official docs:

    For historical reasons, Internet Explorer identifies itself as a Mozilla 4.0 browser.

    0 讨论(0)
提交回复
热议问题