-
-
Save ao/eef2d3d6de4b6a3b8b70c533be121a87 to your computer and use it in GitHub Desktop.
Revisions
-
nathany created this gist
Jun 16, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ # I forgot the firmware password on my MacBook Air and didn't want to take it in: # http://support.apple.com/kb/TS2391 # info # http://paulmakowski.blogspot.com/2009/03/apple-efi-firmware-passwords.html # run the following command to retrieve your obfuscated firmware password: # sudo nvram -p | grep security-password security_password = "%..." # take the complement of every second bit: decode_byte = lambda byte: chr(int(byte, 16) ^ int('10101010',2)) # decode the security password, which contains %-prefixed hex values: decode = lambda pwd: "".join([decode_byte(x) for x in pwd.split('%') if x != '']) print(decode(security_password))