User windows from GoogleChrome

1

I would like to get the user logged into Windows from the GoogleChrome browser. From multiple searches ActiveXObject gets this information but is an object that works exclusively on InternetExplorer.

I know that you may have problems with security holes but I wonder if even with all the disadvantages there is some way to get it in GoogleChrome.

    
asked by anonymous 06.10.2014 / 20:38

1 answer

1

You can list all window.navigator properties for this (a few below):

appCodeName: "Mozilla"
appName: "Netscape"
appVersion: "5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"
language: "en-US"
platform: "MacIntel"
PluginArrayproduct: "Gecko"
productSub: "20030107"
userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"
vendor: "Google Inc."
    
07.10.2014 / 00:05