This commit is contained in:
DavidXanatos 2023-08-27 19:29:13 +02:00
parent ef5b38070e
commit e2f4c60332
3 changed files with 3 additions and 4 deletions

View File

@ -79,7 +79,7 @@ enum ECertLevel {
eCertNoLevel = 0b000, eCertNoLevel = 0b000,
eCertStandard = 0b010, eCertStandard = 0b010,
eCertStandard2 = 0b011, eCertStandard2 = 0b011,
eCertAdvanced = 0b101, eCertAdvanced = 0b100,
eCertMaxLevel = 0b111, eCertMaxLevel = 0b111,
}; };

View File

@ -991,8 +991,7 @@ bool MountManager::AcquireBoxRoot(const WCHAR* boxname, const WCHAR* reg_root, c
std::wstring TargetNtPath; std::wstring TargetNtPath;
SCertInfo CertInfo = { 0 }; SCertInfo CertInfo = { 0 };
//if ((UseFileImage || UseRamDisk) && (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, (UseFileImage ? eCertAdvanced : eCertStandard)))) { if ((UseFileImage || UseRamDisk) && (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, (UseFileImage ? eCertAdvanced : eCertStandard)))) {
if ((UseFileImage || UseRamDisk) && (!NT_SUCCESS(SbieApi_Call(API_QUERY_DRIVER_INFO, 3, -1, (ULONG_PTR)&CertInfo, sizeof(CertInfo))) || !CERT_IS_LEVEL(CertInfo, (UseFileImage ? 0b100 : eCertStandard)))) {
const WCHAR* strings[] = { boxname, UseFileImage ? L"UseFileImage" : L"UseRamDisk" , NULL }; const WCHAR* strings[] = { boxname, UseFileImage ? L"UseFileImage" : L"UseRamDisk" , NULL };
SbieApi_LogMsgExt(session_id, UseFileImage ? 6009 : 6008, strings); SbieApi_LogMsgExt(session_id, UseFileImage ? 6009 : 6008, strings);
errlvl = 0x66; errlvl = 0x66;

View File

@ -3,7 +3,7 @@
#define VERSION_MJR 1 #define VERSION_MJR 1
#define VERSION_MIN 11 #define VERSION_MIN 11
#define VERSION_REV 0 #define VERSION_REV 0
#define VERSION_UPD 2 #define VERSION_UPD 3
#ifndef STR #ifndef STR
#define STR2(X) #X #define STR2(X) #X