Reputation: 103
Is it possible to detect the computer specifications from the browser? For example to list the CPU, RAM, video hardware, etc in the browser that I'm using.
I've heard that this is impossible do in PHP because it is a server-side language, but I don't know if Javascript can do this.
Upvotes: 3
Views: 6423
Reputation: 1
There are no in-browser APIs to get system information like that.
This is for security reasons—it would be easy to use this as the basis for fingerprinting and circumventing restrictions on cookies (e.g. advertisers could easily identify your computer and you without having to use cookies).
Upvotes: 4