Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Client system details

Tags:

javascript

php

Is there anyway of getting client system details like cpu speed, RAM details etc? Does javasctipt has this capablity?

like image 788
FirmView Avatar asked Dec 21 '22 18:12

FirmView


2 Answers

Nope, you cannot do this in javascript because of security matters. What you can get is a system name and version, browser name, screen resolution etc., but not hardware specs.

like image 147
Łukasz W. Avatar answered Dec 30 '22 13:12

Łukasz W.


No, using javascript that's not possible.

But what you can do is use a java applet or even a flex application. For this, the user will have to give you permission to access his computer details, with a simple "Allow" or "Deny" access dialog, raised automatically by java/flex.

like image 32
dmmd Avatar answered Dec 30 '22 12:12

dmmd