Is it possible to execute a .NET dll without an exe to load it?

后端 未结 5 1489
野性不改
野性不改 2020-12-09 09:09

I\'m curious if there\'s a way to execute a static .DLL method in a new process without having to create an .EXE for it?

AFAIK, this isn\'t possible with native Win3

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-09 09:23

    Look into the the rundll32.exe program that ships with windows. If you know certain information about the dll, you can sometimes use this program to run code in that dll.

提交回复
热议问题