Skip to content

Commit cd788ae

Browse files
Add files via upload
1 parent abf97f9 commit cd788ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

shellcode_injection_Windows.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ int main(int argc, char **argv) {
6262
return 4;
6363
}
6464
WaitForSingleObject(thread_handle, 1000);
65-
CloseHandle(thread_handle); // bypass my EDR
65+
CloseHandle(thread_handle); // bypass SentinelOne
6666

67-
CloseHandle(process_handle); // bypass my EDR
67+
CloseHandle(process_handle); // bypass SentinelOne
6868
}

shellcode_runner_windows.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ int main(int argc, char **argv) {
3737
((void(*)())shellcode_pointer)();
3838

3939
free(shellcode_pointer);
40-
CloseHandle(NULL); // bypass my EDR
40+
CloseHandle(NULL); // bypass SentinelOne
4141
return 0;
4242
}

0 commit comments

Comments
 (0)