File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
#include < ntifs.h>
3
3
4
4
constexpr UNICODE_STRING KNOWN_DLLS[] = {
5
- RTL_CONSTANT_STRING (L" gi_agent .dll" )
5
+ RTL_CONSTANT_STRING (L" pirt .dll" )
6
6
};
7
7
8
8
void on_image_load (PUNICODE_STRING img_name, HANDLE proc, PIMAGE_INFO info);
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ void hook32(void* func, void* target) {
47
47
target = addroffset (void , target, STUB_SIZE32);
48
48
49
49
void * module_file = target;
50
- const wchar_t module_file_str[] = L" gi_agent .dll" ;
50
+ const wchar_t module_file_str[] = L" pirt .dll" ;
51
51
write_wstr (&target, module_file_str);
52
52
53
53
// write UNICODE_STRING for module_file
@@ -100,7 +100,7 @@ void hook64(void* func, void* target) {
100
100
target = addroffset (void , target, STUB_SIZE64);
101
101
102
102
void * module_file = target;
103
- const wchar_t module_file_str[] = L" gi_agent .dll" ;
103
+ const wchar_t module_file_str[] = L" pirt .dll" ;
104
104
write_wstr (&target, module_file_str);
105
105
106
106
// write UNICODE_STRING for module_file
You can’t perform that action at this time.
0 commit comments