Juan Castillo
Juan Castillo

Reputation: 103

How can I detect my computer specs and show it in the browser?

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

Answers (1)

thomasfuchs
thomasfuchs

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

Related Questions