Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
159 views

Remote thread is failing on call to LoadLibrary with error 87

I am tring to create a Remote thread that will load a DLL I wrote, and run a function from it. The DLL is working fine (Checked) but from some reason, the Remote thread fails and the proccess in which ...
1
vote
2answers
573 views

Dll injection. Execute CreateRemoteThread with parameter

I wrote dll injection program that works just fine. It loads dll into remote process and calls some function. Now i want to pass argument to that function. CreateRemoteThread has lpParameter for that, ...
1
vote
1answer
293 views

Running DllImport commands from CreateRemoteThread

I have a function named Msg that's imported from a dll named tier0.dll. I can DllImport this just fine, but the command only works when the dll is attached to another process which can complete the ...
1
vote
2answers
150 views

How does CreateRemoteThread work behind the scenes?

What does CreateRemoteThread do to actually create the remote thread?
0
votes
1answer
75 views

Would ASLR cause friction for the address with DLL injection?

I was reading about the DLL injection technique, and I had this question in mind. Let us assume we want to inject a DLL into a destination process in Windows 7 which has ASLR enabled for kernel32.dll ...
0
votes
0answers
58 views

Execute remote function with memory address as parameter

I'm trying to execute a function in a running (old) Win32 Borland application (Window has class OLW_WINDOW). By using OllyDbg I've found out that the function has one parameter which is a memory ...
0
votes
2answers
300 views

CreateRemoteThread with string argument example

Can anyone give me an example of how to call an injected dll's function with a string argument? I have tried to do it in the ways I know to do it but have gotten the wrong result. I allocate memory ...