Hi All, i have a really badass problem when im trying to call the NtAllocateVirtualMemory
export from ntdll library
so this is the how stack Look
CPU Dump
Address Hex dump ASCII
0018FB40 BC 00 00 00|00 00 40 00| .....@.
0018FB50 00 00 00 00|00 50 04 00|00 30 00 00|40 00 00 00| .....P..0..@...
BC 00 00 00 = HANDLE ProcessHandle
00 00 40 00 = Imagebase
00 00 00 00 = ULONG_PTR ZeroBits
00 50 04 00 = Size of image
00 30 00 00 = ULONG AllocationType
40 00 00 00 = ULONG Protect
This is how i call in ASM
Push 0x40
push 0x3000
; edi register hold many values it's a pointer to a 80 byte structure where i store all value i need
mov ecx,dword[edi] ; 'PE signature'
mov ecx,dword[ecx+0x50] ;SizeOfImage
push ecx
push 0
push dword[edi+4];IMAGEBASE
mov ecx,dword[edi+8]
push dword[ecx] ;tPROCESS_INFORMATION
call eax ; eax Hold Ntdll NtAllocateVirtualMemory pointer
and i always get this hex error -3ffffffb i think is STATUS_ACCESS_DENIED or STATUS_ACCESS_VIOLATION
so what im doing wrong? thanks !