how to get client cpu id

  • Thread starter Thread starter Yoshitha
  • Start date Start date
Y

Yoshitha

hi
How to get the cpu id of the client from where the request came to the
server.
for e.g am sending a request to a server from one system then i want to
capture the cpu id of that system

Can anybody tell me how to solve this problem.
what methods to be followed to get this.

Thanx in advance
Yoshitha
 
hi
How to get the cpu id of the client from where the request came to the
server.
for e.g am sending a request to a server from one system then i want to
capture the cpu id of that system

Can anybody tell me how to solve this problem.
what methods to be followed to get this.

The only way I can think of for doing this would be to write a client-side
VBScript or JavaScript function which makes a call to the winmgmts object.

Have a look here:
http://www.mvps.org/scripting/people/bakkenalia.htm
Scroll down till you find Function CpuID()

*HOWEVER* - this will only work with Internet Explorer and will require
fairly loose security settings so, chances are if you're running this across
the public Internet as opposed to a closed intranet, it will almost
certainly not work...
 
Yoshitha,

Not exactly sure what you mean by the cpu id. You can get the client's IP
address in property Request.UserHostAddress. Note, that if the client is
behind a corporate firewall, you will get the same ip address for all
workstations on the client's network.

Eliyahu
 
Eliyahu said:
Yoshitha,

Not exactly sure what you mean by the cpu id. You can get the client's IP
address in property Request.UserHostAddress. Note, that if the client is
behind a corporate firewall, you will get the same ip address for all
workstations on the client's network.

Eliyahu

Many modern processors (Pentium III/IV+) will have a unique "ID" that
they can provide upon request. There was a fear that ppl could be
tracked across the Internet via this CPU ID, so this function is now
disabled by default in the BIOS. To be able to have their computer's CPU
ID called, a computer owner has to turn this feature on in the BIOS.
Since it comes disabled by default, it is highly unlikely that more than
a few percentage of ppl have this turned on (how many "average joe"
users do you know that can get into the BIOS? Many ppl I know don't even
know what a BIOS is).

....Geshel
--
**********************************************************************
My reply-to is an automatically monitored spam honeypot. Do not use it
unless you want to be blacklisted by SpamCop. Please reply to my first
name at my last name dot org.
**********************************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top