Hi, I converted a lot of winapi syscall to their native version using ntdll but CreateProcess seems a bit harder to implement. I need to use it in my crypter so I need to create a suspended process and give it the variabile containing the PE buffer. The problem is that there is not much documentation about ntddl native syscall.
I could use:
- NtCreateProcessEx (very complex and long to do)
- NtCreateUserProcess (easy but.. can it get the variabile containing the PE buffer? It seems this call can work only with a disk path)
- other ?
What should I use? Are there alternatives? Any resource is appreciated
I could use:
- NtCreateProcessEx (very complex and long to do)
- NtCreateUserProcess (easy but.. can it get the variabile containing the PE buffer? It seems this call can work only with a disk path)
- other ?
What should I use? Are there alternatives? Any resource is appreciated