index
:
EfiGuard.git
Disable PatchGuard and DSE at boot time with an EasyAntiCheat compatibility mode
log msg
author
committer
range
my
test
about
summary
refs
log
tree
commit
diff
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Mattiwatti <mattiwatti@gmail.com>
2019-03-30 02:15:36 +0100
committer
Mattiwatti <mattiwatti@gmail.com>
2019-03-30 02:15:36 +0100
commit
d50a2aa7397e22558842faccc76a5d372c6e318c
(
patch
)
tree
a255666ce47fc5f97cf8d413c2b27b5c52117d33
parent
f56011ea4d54fd202827e99171acecb09e7d599e
(
diff
)
EfiDSEFix: on Windows >= 8, use a different default g_CiOptions value
v1.0.1
Fixes #1
Diffstat
-rw-r--r--
Application/EfiDSEFix/src/main.cpp
2
1 files changed, 1 insertions, 1 deletions
diff --git a/Application/EfiDSEFix/src/main.cpp b/Application/EfiDSEFix/src/main.cpp
index 8409ee3..0575b0a 100644
--- a/
Application/EfiDSEFix/src/main.cpp
+++ b/
Application/EfiDSEFix/src/main.cpp
@@ -52,7 +52,7 @@ int wmain(int argc, wchar_t** argv)
{
if (NtCurrentPeb()->OSBuildNumber >= 9200)
{
- CiOptionsValue = argc == 3 ? wcstoul(argv[2], nullptr, 16) : CODEINTEGRITY_OPTION_ENABLED;
+ CiOptionsValue = argc == 3 ? wcstoul(argv[2], nullptr, 16) : 0x6;
Printf(L"(Re)enabling DSE [g_CiOptions value = 0x%X]...\n", CiOptionsValue);
}
else