资源简介
unlocker是一款目前互联网上最优秀的vmware虚拟机苹果破解补丁,使用该补丁可以轻松解除VMware Workstation软件的Mac锁定功能,让软件可以识别mac系统的ISO镜像文件,从而让vw虚拟机能够正常安装苹果mac系统,让用户可以在windows平台下的虚拟机环境下运行苹果系统。
代码片段和文件信息
“““
The MIT License (MIT)
Copyright (c) 2014-2015 Dave Parsons & Sam Bingner
Permission is hereby granted free of charge to any person obtaining a copy
of this software and associated documentation files (the ‘Software‘) to deal
in the Software without restriction including without limitation the rights
to use copy modify merge publish distribute sublicense and/or sell
copies of the Software and to permit persons to whom the Software is
furnished to do so subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS‘ WITHOUT WARRANTY OF ANY KIND EXPRESS OR
IMPLIED INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM DAMAGES OR OTHER
LIABILITY WHETHER IN AN ACTION OF CONTRACT TORT OR OTHERWISE ARISING FROM
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
vSMC Header Structure
Offset Length struct Type Description
----------------------------------------
0x00/00 0x08/08 Q ptr Offset to key table
0x08/08 0x04/4 I int Number of private keys
0x0C/12 0x04/4 I int Number of public keys
vSMC Key Data Structure
Offset Length struct Type Description
----------------------------------------
0x00/00 0x04/04 4s int Key name (byte reversed e.g. #KEY is YEK#)
0x04/04 0x01/01 B byte Length of returned data
0x05/05 0x04/04 4s int Data type (byte reversed e.g. ui32 is 23iu)
0x09/09 0x01/01 B byte Flag R/W
0x0A/10 0x06/06 6x byte Padding
0x10/16 0x08/08 Q ptr Internal VMware routine
0x18/24 0x30/48 48B byte Data
“““
import os
import sys
import struct
import subprocess
if sys.version_info < (2 7):
sys.stderr.write(‘You need Python 2.7 or later\n‘)
sys.exit(1)
# Setup imports depending on whether IronPython or CPython
if sys.platform == ‘win32‘ \
or sys.platform == ‘cli‘:
from _winreg import *
def rot13(s):
chars = ‘AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz‘
trans = chars[26:] + chars[:26]
rot_char = lambda c: trans[chars.find(c)] if chars.find(c) > -1 else c
return ‘‘.join(rot_char(c) for c in s)
def bytetohex(bytestr):
return ‘‘.join([‘%02X ‘ % ord(x) for x in bytestr]).strip()
def printkey(i offset smc_key smc_data):
print str(i + 1).zfill(3) \
+ ‘ ‘ + hex(offset) \
+ ‘ ‘ + smc_key[0][::-1] \
+ ‘ ‘ + str(smc_key[1]).zfill(2) \
+ ‘ ‘ + smc_key[2][::-1].replace(‘\x00‘ ‘ ‘) \
+ ‘ ‘ + ‘{0:#0{1}x}‘.format(smc_key[3] 4) \
+ ‘ ‘ + hex(smc_key[4]) \
+ ‘ ‘ + bytetohex(smc_data)
E_CLASS64 = 2
E_SHT_RELA = 4
def patchELF(f oldOffset newOffset):
f.seek(0)
- 上一篇:Akka入门与实战 中文版
- 下一篇:人体行为识别入门英文论文
相关资源
- unlock-all-v110.zip
- unlock-all-v1.20VMware10.0专用MAC补丁包
- vmwareworkstation15破解版+许可证.zip
- 使用 VMware Workstation Pro 12.pdf
- VMware workstation-pro-12-user-guide
- 通过IPMI远程部署ESXI.pdf
- 虚拟机实用技巧 FAQ 一
- vmware15安装macos10.14.pdf
- Mac操作系统VMWare10安装所必须的绿色补
- vmware虚拟机MAC补丁包unlock-all-v120vmWa
- 纯dos系统的vmware镜像
- VMware Tools for mac osx 10.13 darwin852
- os darwin8.5.8
- VMware9汉化包.rar
- VMware Horizon 7.6 官方中文版 产品手册
- vmware ovftool x64 工具和使用方法
- vm 解锁mac os unlocker-3.0.3 最新版本
- vmware tool for win98.iso(亲测有效
- VMware Remote Console 10.0.3 for WindowsVMware
- vmware win98全套驱动
- VMware Horizon View 5.2配置手册超全面版
- VMware-Horizon-View-Client-x86-2.3.3-1745122.e
- VMware-ovftool-4.3.0-12320924-win.x86_64.msi
- VMware-VMRC-10.0.2-7096020.rar
- vmware tools for windows 2000
- VMware-viewclient-x86_64-5.4.0-z.zip
- Unlocker For VMware15
- unlocker3.02 适用于VMware15 解锁macOS 10.
- VMware-viewclient-5.1.1-799444.rar
- Mac OS X Unlocker for VMwareESXi 6.5
评论
共有 条评论