• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Reading OS from browser?

 
Ranch Hand
Posts: 282
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I was just wondering how is it possible to know system information by a browser?

let me explain, whoever has used Windows as OS might would have used microsoft windows patch updation thing. when we click on the button asking for checking for critical updates...It figures out what all updates our system needs..right?

I want to understand how is it done? how does it reads out my system information? Is some functionality built in IE or it works fine with other non-microsoft browsers...anybody tried it with other browsers? or it can be done with javascript..!!
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IE is using ActiveX to do that and not JavaScript. ActiveX is a big security risk since it is able to manipulate files on the computer. JavaScript can not do that.

Eric
 
Amit Agrawal
Ranch Hand
Posts: 282
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks. Does these ActiveX work on all browsers? or atleast on all popular browsers?

Actually so used to with applets that its really hard to understand that it can read out my system with out any settings or explicit permission to do so !!
 
Ranch Hand
Posts: 5093
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ActiveX works on all popular browsers, meaning all versions of IE since 4.0 (which together have some 95% of the browsermarket between them).

All work to determine what updates to get is done on your own computer, no data is sent to the server except a list of the actual updates to retrieve.

ActiveX is no more a security risk than is any other client-side technology that can execute both local code and communicate over a network.
 
Eric Pascarello
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ActiveX works on only IE

I think Mozzila is coming out with their own version, but they are working on security restraints for it.

Eric
 
reply
    Bookmark Topic Watch Topic
  • New Topic