Machine ID for Mac OS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T23:42:56Zhttp://stackoverflow.com/feeds/question/1050377http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1050377/machine-id-for-mac-os1Machine ID for Mac OS?Pedro d'Aquino2009-06-26T17:51:37Z2009-06-26T18:50:06Z
<p>I need to calculate a <strong>machine id for computers running MacOS</strong>, but I don't know where to retrieve the informations - stuff like HDD serial numbers etc. The <strong>main requirement</strong> for my particular application is that the user <strong>mustn't be able to spoof it</strong>. Before you start laughing, I know that's far fetched, but at the <em>very least</em>, the spoofing method must require a reboot.</p>
<p>The best solution would be one in <strong>C/C++</strong>, but I'll take Objective-C if there's no other way. The über-best solution would <strong>not need root privileges</strong>.</p>
<p>Any ideas? Thanks.</p>
http://stackoverflow.com/questions/1050377/machine-id-for-mac-os/1050385#10503851Answer by Alan Haggai Alavi for Machine ID for Mac OS?Alan Haggai Alavi2009-06-26T17:53:39Z2009-06-26T17:53:39Z<p>How about getting the MAC ID of a network card attached to a computer using <code>ifconfig</code>?</p>
http://stackoverflow.com/questions/1050377/machine-id-for-mac-os/1050424#10504243Answer by Erik for Machine ID for Mac OS?Erik2009-06-26T18:03:22Z2009-06-26T18:03:22Z<p>The tool /usr/sbin/system_profiler can provide you with a list of serial numbers for various hardware components. You might consider using those values as text to generate an md5 hash or something similar. </p>
http://stackoverflow.com/questions/1050377/machine-id-for-mac-os/1050569#10505692Answer by Rob Napier for Machine ID for Mac OS?Rob Napier2009-06-26T18:35:21Z2009-06-26T18:50:06Z<p>Erik's suggestion of <code>system_profiler</code> (and its underlying, but undocumented SystemProfiler.framework) is your best hope. Your underlying requirement is not possible, and any solution without hardware support will be pretty quickly hackable. But you can build a reasonable level of obfuscation using <code>system_profiler</code> and/or SystemProfiler.framework.</p>
<p>I'm not sure your actual requirements here, but these posts may be useful:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/886893/store-an-encryption-key-in-keychain-while-application-installation-process">Store an encryption key in Keychain while application installation process</a> (this was related to network authentication, which sounds like your issue)</li>
<li><a href="http://robnapier.net/blog/obfuscating-cocoa-389" rel="nofollow">Obfuscating Cocoa</a> (this was more around copy-protection, which may not be your issue)</li>
</ul>
<p>I'll repeat here what I said in the first posting: It is not possible, period, not possible, to securely ensure that only your client can talk to your server. If that is your underlying requirement, it is not a solvable problem. I will expand that by saying it's not possible to construct your program such that people can't take out any check you put in, so if the goal is licensing, that also is not a completely solvable problem. The second post above discusses how to think about that problem, though, from a business rather than engineering point of view.</p>
<p><strong>EDIT:</strong> Regarding your request to require a reboot, remember that Mac OS X has kernel extensions. By loading a kernel extension, it is always possible to modify how the system sees itself at runtime without a reboot. In principle, this would be a Mac rootkit, which is not fundamentally any more complex than a Linux rootkit. You need to carefully consider who your attacker is, but if your attackers include Mac kernel hackers (which is not an insignificant group), then even a reboot requirement is not plausible. This isn't to say that you can't make spoofing annoying for the majority of users. It's just always possible by a reasonably competent attacker. This is true on all modern OSes; there's nothing special here about Mac.</p>