Search found 4 matches

by hardik.choudhary
Wed Nov 20, 2019 11:19 am
Forum: madCodeHook
Topic: Inject multiple dlls with CreateProcessExW
Replies: 1
Views: 8342

Inject multiple dlls with CreateProcessExW

Hi, as far as I know, createProcessExW allows us to inject a single dll, at the time of process creation. Is there a way to inject multiple dlls with createProcessExW?
Thanks in advance.
by hardik.choudhary
Thu Nov 14, 2019 11:18 am
Forum: madCodeHook
Topic: CreateProcessEx failing on 32 bit Windows 7
Replies: 6
Views: 10736

Re: CreateProcessEx failing on 32 bit Windows 7

"Basically, you shouldn’t use a literal/const string, but a buffer for the commandline arg", yes I've learnt that the hard way.

It's fine, it was a different issue, altogether.

Thanks for your time and suggestions.
by hardik.choudhary
Thu Nov 14, 2019 6:34 am
Forum: madCodeHook
Topic: CreateProcessEx failing on 32 bit Windows 7
Replies: 6
Views: 10736

Re: CreateProcessEx failing on 32 bit Windows 7

Thanks, I tried that but same error. It's a createProcessW callback, and the same parameters that were there for CreateProcessW are passed into CreateProcessExW along with the extra dll. Funny thing is it works for a 64 bit OS opening a 32 bit process, so I know the callback code, and what I'm injec...
by hardik.choudhary
Wed Nov 13, 2019 1:05 pm
Forum: madCodeHook
Topic: CreateProcessEx failing on 32 bit Windows 7
Replies: 6
Views: 10736

CreateProcessEx failing on 32 bit Windows 7

HI
I tried CreateProcessEx on a 32 bit Windows 7, it fails with GetLastError() 123(ERROR_INVALID_NAME). Any suggestions as to why this could be?
Thanks