资源简介
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入门与实战 中文版
- 下一篇:人体行为识别入门英文论文
相关资源
- vSphere6.06.56.7通用版注册机
- VMware65_SLP_DeLLSLIC2.1
- vmware虚拟win7网卡驱动
- VMware vSphere 的 Intel 82579LM网卡驱动 最
- 基于IBM eserver x440+FAStT700+VMware的系统整
- 如何通过VMware虚拟桌面及NetApp存储管
- 借助NetApp虚拟化解决方案简化VMware环
- 飞康SRA助力VMware更快速自动灾难恢复
- 飞康针对VMware的持续数据保护CDP解决
- VMware NSX-V 6.4.8
- VMwareP2V迁移工具介绍
- vmware百度网盘
- VMware-12密钥永久激活
- VMware 8安装Mac OS X 10.8 Lion系统及工具包
- VMware vSphere 全系列序列号
- VMware 12 专业版永久许可证密钥
- OpenWrt的x86虚拟机vmdk文件
- VMware网络划分与配置
- 新一代SDN VMWARE NSX网络原理与实践
- VMware Unlocker for OSX Ver2.0.7 ( unlock-al
- VMware windows 7 硬盘镜像
- VmWare7.1.4注册机
- unlocker3.0+VMware Workstation 15 Pro自行+Ke
- 3PAR高可用性解决方案 Peer Persistence
- 方案建议-使用VMware架构搭建自己的私
- windows2000-kb835732-x86-chs.iso
- VMware教程,VMware Workstation 使用手册
- vmware虚拟机卸载清理助手1.0中文绿色
- VMware Tools for OS X (darwin.iso)v7.1.2.r
- vmnetcfg vmware 桥接 配置工具
评论
共有 条评论