资源简介
把需要的文件拉倒里面
Unlocker Esxi6.7
Unlocker Esxi6.5
我是6.7,用6.7的就行
这个6.7的是rar的,我就在自己桌面上解压了,然后拉倒esxi里
Unlocker Esxi6.7
Unlocker Esxi6.5
我是6.7,用6.7的就行
这个6.7的是rar的,我就在自己桌面上解压了,然后拉倒esxi里
代码片段和文件信息
#!/usr/bin/env python
“““
The MIT License (MIT)
Copyright (c) 2014-2016 Dave Parsons
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
“““
“““
from __future__ import print_function
import struct
import sys
if sys.version_info < (2 7):
sys.stderr.write(‘You need Python 2.7 or later\n‘)
sys.exit(1)
def bytetohex(data):
if sys.version_info > (3 0):
# Python 3 code in this block
return ““.join(“{:02X} “.format(c) for c in data)
else:
# Python 2 code in this block
return ““.join(“{:02X} “.format(ord(c)) for c in data)
def printkey(i offset smc_key smc_data):
print(str(i + 1).zfill(3)
+ ‘ ‘ + hex(offset)
+ ‘ ‘ + smc_key[0][::-1].decode(‘UTF-8‘)
+ ‘ ‘ + str(smc_key[1]).zfill(2)
+ ‘ ‘ + smc_key[2][::-1].replace(b‘\x00‘ b‘ ‘).decode(‘UTF-8‘)
+ ‘ ‘ + ‘{0:#0{1}x}‘.format(smc_key[3] 4)
+ ‘ ‘ + hex(smc_key[4])
+ ‘ ‘ + bytetohex(smc_data))
def dumpkeys(f key):
# Setup struct pack string
key_pack = ‘=4sB4sB6xQ‘
# Do Until OSK1 read
i = 0
while True:
# Read key into struct str and data byte str
offset = key + (i * 72)
f.seek(offset)
smc_key = struct.unpack(key_pack f.read(24))
smc_data = f.read(smc_key[1])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-03-02 14:03 Unlocker Esxi6.7\
文件 375 2018-05-16 09:19 Unlocker Esxi6.7\.gitattributes
文件 58 2018-05-16 09:19 Unlocker Esxi6.7\.gitignore
目录 0 2018-05-16 09:19 Unlocker Esxi6.7\backup\
文件 6206440 2018-05-16 09:19 Unlocker Esxi6.7\backup\vmwareba
目录 0 2018-05-16 09:19 Unlocker Esxi6.7\backup\x64\
文件 25006568 2018-05-16 09:19 Unlocker Esxi6.7\backup\x64\vmware-vmx-debug.exe
文件 22916072 2018-05-16 09:19 Unlocker Esxi6.7\backup\x64\vmware-vmx-stats.exe
文件 20453864 2018-05-16 09:19 Unlocker Esxi6.7\backup\x64\vmware-vmx.exe
文件 3912925 2018-05-16 09:19 Unlocker Esxi6.7\dumpsmc.exe
文件 5602 2018-05-16 09:19 Unlocker Esxi6.7\dumpsmc.py
目录 0 2018-05-16 09:19 Unlocker Esxi6.7\esxi\
文件 257 2018-05-16 09:19 Unlocker Esxi6.7\esxi\esxi-build.sh
文件 599 2018-05-16 09:19 Unlocker Esxi6.7\esxi\esxi-install.sh
文件 204 2018-05-16 09:19 Unlocker Esxi6.7\esxi\esxi-smctest.sh
文件 377 2018-05-16 09:19 Unlocker Esxi6.7\esxi\esxi-uninstall.sh
文件 1531 2018-05-16 09:19 Unlocker Esxi6.7\esxi\esxiconfig.py
文件 1792 2018-05-16 09:19 Unlocker Esxi6.7\esxi\local-prefix.sh
文件 75 2018-05-16 09:19 Unlocker Esxi6.7\esxi\local-suffix.sh
文件 16222 2018-05-16 09:19 Unlocker Esxi6.7\esxi\local.sh
文件 8817861 2018-05-16 09:19 Unlocker Esxi6.7\gettools.exe
文件 5665 2018-05-16 09:19 Unlocker Esxi6.7\gettools.py
文件 1098 2018-05-16 09:19 Unlocker Esxi6.7\license.txt
文件 975 2018-05-16 09:19 Unlocker Esxi6.7\lnx-install.sh
文件 898 2018-05-16 09:19 Unlocker Esxi6.7\lnx-uninstall.sh
文件 447 2018-05-16 09:19 Unlocker Esxi6.7\lnx-update-tools.sh
文件 787 2018-05-16 09:19 Unlocker Esxi6.7\osx-install.sh
文件 749 2018-05-16 09:19 Unlocker Esxi6.7\osx-uninstall.sh
文件 5100 2018-05-16 09:19 Unlocker Esxi6.7\readme.txt
文件 3385 2018-05-16 09:19 Unlocker Esxi6.7\test-unlocker.py
目录 0 2018-05-16 09:19 Unlocker Esxi6.7\tools\
............此处省略11个文件信息
相关资源
- VMware Unlocker for OSX Ver2.0.7 ( unlock-al
- unlocker3.0+VMware Workstation 15 Pro自行+Ke
- dc-unlocker2client_1.00.1403解锁工具
- VMware14 unlocker264921
- VMware15.5.2安装unlocker的darwin11.5.3工具
- unlocker206.zip
- unlocker208下载205805
- unlocker208最新vmware mac补丁绿色版
- esxi6.5/6.7e100e和r8168网卡驱动及在线驱
- VMware Unlocker for OS X 1.2.0 ( unlock-all-
- VMware Workstation Pro 14 unlocker
- vm 解锁mac os unlocker-3.0.3 最新版本
- Unlocker For VMware15
- unlocker3.02 适用于VMware15 解锁macOS 10.
- Mac OS X Unlocker for VMwareESXi 6.5
- Unlocker v3.0.0.zip
- unlocker3.02 + MacOS10.14 + MacOS10.13
- VMware-ESXi-6.7.0-8169922增加RealTek8168网卡
- 解锁工具Unlocker v3.0.1
- Unlocker.3.0.2.zip
- VMware14 unlocker
- unlocker-master最新版.rar
- unlocker for vm14
- unlocker-master v2.1.1.zip
- Unlocker3.0.3 for MacOS优化版,极速安装,
- unlocker 203
- unlocker-master v2.1.1
- VMware-ESXi-6.7.0-8169922增加RealTek8168网卡
- ESXI6.7_RT8168
- Unlocker V1.8.9 完全汉化纯净安装版
评论
共有 条评论