up vote 5 down vote favorite
1
share [g+] share [fb]

I know that we can get the MAC address of a user via IE (ActiveX objects).

Is there a way to do the same thing in all browsers? (Especially since FF is gaining browser share everyday!)

link|improve this question

62% accept rate
Any particular reason why you didn't accept any of the answers? – Gilles Oct 4 '08 at 12:38
Well, I was pretty disappointed on reading 'No' at that time... and, dropped the idea I was doing and forgot to mark the answer I found most appropriate. Just did that! :) – Adhip Gupta Oct 9 '08 at 6:03
feedback

5 Answers

up vote 3 down vote accepted

I concur with all the previous answers that it would be a privacy/security vulnerability if you would be able to do this directly from Javascript. There are two things I can think of:

  • Using Java (with a signed applet)
  • Using signed Javascript, which in FF (and Mozilla in general) gets higher privileges than normal JS (but it is fairly complicated to set up)
link|improve this answer
feedback

The quick and simple answer is No.

Javascript is quite a high level language and does not have access to this sort of information.

link|improve this answer
then what about all the google search result providing sample codes to get MAC Address – Junaid Saeed Dec 26 '10 at 2:53
1  
I've had a quick look around Google and all of the pages I read were IE only solution which relied on using ActiveX objects. If you could post a link showing otherwise... – GateKiller Jan 12 '11 at 16:52
feedback

No you cannot get the MAC address in JavaScript, mainly because the MAC address uniquely identifies the running computer so it would be a security vulnerability.

Now if all you need is a unique identifier, I suggest you create one yourself using some cryptographic algorithm and store it in a cookie.

If you really need to know the MAC address of the computer AND you are developing for internal applications, then I suggest you use an external component to do that: ActiveX for IE, XPCOM for Firefox (installed as an extension).

link|improve this answer
feedback

If this is for an intranet application and all of the clients use DHCP, you can query the DHCP server for the MAC address for a given IP address.

link|improve this answer
feedback

Nope. The reason ActiveX can do it is because ActiveX is a little application that runs on the client's machine.

I would imagine access to such information via JavaScript would be a security vulnerability.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.