Questions tagged [dll-injection]

DLL injection is a technique used to run code within the address space of another process by forcing it to load a dynamic-link library(DLL).

DLL injection is often used by external programs to influence the behaviour of another program in a way its authors did not anticipate or intend. For example, the injected code could hook system function calls, or read the contents of password text-boxes, which cannot be done the usual way. A program used to inject arbitrary code into arbitrary processes is called a DLL injector.

468 questions
-6
votes
2 answers

how to control one program from other

I want a little help. I know java and little c++. I have seen trainers for games which can set health of player and spawn cars etc. I want to make something similar to that. For example we have minesweeper running. when i run my java program and…
hh.
  • 3
  • 2
-8
votes
1 answer

In a remote thread, how do I call functions whose parameters contain pointers?

I want to call SHFileOperation using code injection. My code works fine while calling simple functions like MessageBox from user32.dll, but won't while calling ShFileOperation from shell32.dll. I'll post the part of the code that I think has the…
sam
  • 229
  • 5
  • 12
1 2 3
31
32