Greetings,
I've been trying to get the Interact function working in AutoIt but have some problems with calling CreateRemoteThread from kernel32.dll
Here's a paste (YaY to shynd for the original code) : AutoIt pastebin - collaborative debugging tool
The arguments of the function are as follows:
Code:
HANDLE WINAPI CreateRemoteThread(
__in HANDLE hProcess,
__in LPSECURITY_ATTRIBUTES lpThreadAttributes,
__in SIZE_T dwStackSize,
__in LPTHREAD_START_ROUTINE lpStartAddress,
__in LPVOID lpParameter,
__in DWORD dwCreationFlags,
__out LPDWORD lpThreadId
);
In AutoIt this would translate to:
DllCall("kernel32.dll", "int", "CreateRemoteThread", typeN, argN)
I'm unsure what to take as lpStartAddress and lpParameter
Any help / hints to website are appreciated,
And I know AutoIt sucks for memory-editing, thanks :[