Merge pull request #664 from XLabsProject/develop

Release v2.1.4
This commit is contained in:
Maurice Heumann 2023-04-01 19:48:51 +02:00 committed by GitHub
commit da6f380758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

2
deps/gsc-tool vendored

@ -1 +1 @@
Subproject commit 15526ab79ad6e268452d2884013fc909cc9ded8e Subproject commit f6ae955f34fbe8cfefa8e9d8112c5c4a993c19bb

View File

@ -71,11 +71,6 @@ namespace arxan
return EXCEPTION_CONTINUE_EXECUTION; return EXCEPTION_CONTINUE_EXECUTION;
} }
if (info->ExceptionRecord->ExceptionCode == STATUS_SINGLE_STEP)
{
return EXCEPTION_CONTINUE_EXECUTION;
}
return EXCEPTION_CONTINUE_SEARCH; return EXCEPTION_CONTINUE_SEARCH;
} }
@ -141,7 +136,7 @@ namespace arxan
nt_query_information_process_hook.create(ntdll.get_proc<void*>("NtQueryInformationProcess"), nt_query_information_process_hook.create(ntdll.get_proc<void*>("NtQueryInformationProcess"),
nt_query_information_process_stub); nt_query_information_process_stub);
AddVectoredExceptionHandler(0, exception_filter); AddVectoredExceptionHandler(1, exception_filter);
} }
void post_unpack() override void post_unpack() override