Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Latest commit

 

History

History

dllusing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Using DLL

Using DLL - Load Time & Run Time

output

External Resources

Notice

  • The used dll in created here
  • runtimeusemydll.cpp is using the dll on run time (when the process need that library, it load the dll on run time)
  • usemydll.cpp is loading the dll on load-time (before the process even going to usemydll.exe entry point)
  • In order to understand how loadtime & runtime loading effects the binary foramt of PE's & parsed by the OS consider watch this video from The Life Of Binary

Credit

  • Ilay Gilman