You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm wrapping CreateProcess.go or CreateThread.go or CreateThreadNative.go in functions as the following snippet shows
func main(){
//Processing
runCreateThread() // or syscall, or createProcess... Just the regular functions to pop calc.exe, completely unchanged!
//More processing
}
It seems that runCreateThread() does the intended functionality of popping calc.exe, but the parent process exits every time right after CreateThread.
If Debug is enabled, The last thing i see is [DEBUG]Calling CreateThread...
What makes this weirder is that I'm not getting any Go-related errors or panics, just a silent exit.
This has been tested with syscall, createProcess, CreateThread and CreateThreadNative
Maybe the issue is RtlCopyMemory overwriting memory? or am i far off the mark?
The text was updated successfully, but these errors were encountered:
I'm wrapping CreateProcess.go or CreateThread.go or CreateThreadNative.go in functions as the following snippet shows
It seems that runCreateThread() does the intended functionality of popping calc.exe, but the parent process exits every time right after CreateThread.
If Debug is enabled, The last thing i see is
[DEBUG]Calling CreateThread...
What makes this weirder is that I'm not getting any Go-related errors or panics, just a silent exit.
This has been tested with syscall, createProcess, CreateThread and CreateThreadNative
Maybe the issue is
RtlCopyMemory
overwriting memory? or am i far off the mark?The text was updated successfully, but these errors were encountered: