Click here to Skip to main content
15,898,010 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
what is dll injection? a simple explain please
Posted

 
Share this answer
 
Google and wiki, a wonderful combination. You should try it some day...
WIKI: DLL injection[^]
 
Share this answer
 
This is a technique where you insert your DLL into another process.

Most of the time it is used to hook function calls before they make it to the OS, or some library, and the hooks in the DLL can then inspect the function call, add data to it, modify it, or prevent it from going to the intended target altogether.
 
Share this answer
 
Every running processes consist of several loaded module which most of them are DLLs.

Some programs are able to add their own DLLs into other processes and work beside them.

For example Babylon(Dictionary) does really DLL injection and adds its own DLL to every process which are running or start to run.

You didn't asked how to do it so I do not mention it.

But there are some tools to do it for fun :
http://securityxploded.com/remotedll.php[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900