https://github.com/hmbsbige/checkultraiso
The equivalence code of UltraISO key validation.
https://github.com/hmbsbige/checkultraiso
Last synced: 8 days ago
JSON representation
The equivalence code of UltraISO key validation.
- Host: GitHub
- URL: https://github.com/hmbsbige/checkultraiso
- Owner: HMBSbige
- License: mit
- Created: 2017-03-16T10:17:46.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-14T16:30:05.000Z (over 7 years ago)
- Last Synced: 2025-03-29T06:51:32.937Z (29 days ago)
- Language: C
- Homepage: https://github.com/yufengzjj/PoCUltraISOKeyGen
- Size: 542 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CheckUltraISO
From https://github.com/yufengzjj/PoCUltraISOKeyGen**注意:** UltraISO有简体中文版和多语言版,本程序为多语言版的注册模拟
## UltraISO注册表位置
```
HKEY_CURRENT_USER\SOFTWARE\EasyBoot Systems\UltraISO
```## 已知BUG
- [ ] 中文用户名KeyGen会生成特殊字符,如:
```
鄙哥
4DFFC3D44BDB44B2€
```
但实际Key为```4DFFC3D44BDB44B2```- [ ] Key验证相关:
用户名为```bige```
Key:
```
8058EF0A1CC2DB8
8058EF0A1CC2DB80
```
注册模拟均correct但显然```8058EF0A1CC2DB80```才是真Key
## VS2017编译openssl静态库
```
%comspec% /k "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
cd c:\openssl-*\
perl Configure VC-WIN64A 或 perl Configure debug-VC-WIN64A
ms\do_win64a.bat
nmake -f ms\nt.mak
nmake -f ms\nt.mak test
nmake -f ms\nt.mak install
```