Hello,
I am using IDA Pro 7.0.
I have a weird behaviour with IDAPython. I need to allocate some memory in order to execute malware's shellcode from my IDAPython script. I was trying to execute VirtualAlloc of ctypes but it only returns 0 (which is unusable of course). It only happens when I execute it on IDA:
ekt0
I am using IDA Pro 7.0.
I have a weird behaviour with IDAPython. I need to allocate some memory in order to execute malware's shellcode from my IDAPython script. I was trying to execute VirtualAlloc of ctypes but it only returns 0 (which is unusable of course). It only happens when I execute it on IDA:
Code: Select all
Have you ever encountered this issue?Python>import ctypes
Python>ctypes.windll.kernel32.VirtualAlloc(0,192,0x1000,0)
0
ekt0