Alright so this is kind of vague and so far not many people have been able to help or figure out a way to track down why this is happening.
So i have an untouched unmodified RunPE(besides my one change) that i have simple changed the creation flag to &H8000000 so it does not display the window.
So it works fine when i create it normally showing the window but when i change the creation flag to &H8000000 the application immediately crashes after it injects and loads.
I'm not even sure how i could debug this or track down if there is something in the PE to change more or the application i am trying to load, it literally loads and works fine if it creates a window with creation flag of 4
This is the line i have changed:
Any insight as to what i should check out or try? I'm literally a nood/new to this whole RunPE code.
So i have an untouched unmodified RunPE(besides my one change) that i have simple changed the creation flag to &H8000000 so it does not display the window.
So it works fine when i create it normally showing the window but when i change the creation flag to &H8000000 the application immediately crashes after it injects and loads.
I'm not even sure how i could debug this or track down if there is something in the PE to change more or the application i am trying to load, it literally loads and works fine if it creates a window with creation flag of 4
This is the line i have changed:
Code:
If Not ufnrefuer(path, QuotedPath, IntPtr.Zero, IntPtr.Zero, False, &H8000000, IntPtr.Zero, Nothing, SI, PI) Then Throw New Exception()
Any insight as to what i should check out or try? I'm literally a nood/new to this whole RunPE code.