Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!)

share|improve this question
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

5 Answers

up vote 8 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)
share|improve this answer

The quick and simple answer is No.

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

share|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

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).

share|improve this answer
Do you know of an external component for Safari? – livingston_mechanical Feb 7 '12 at 14:38
No. I was actually suggesting to create one. – Vincent Robert Feb 7 '12 at 15:38

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.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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