https://github.com/enkomio/rundotnetdll
A simple utility to list all methods of a given .NET Assembly and to invoke them
https://github.com/enkomio/rundotnetdll
dotnet malware-analysis reflection tool
Last synced: 4 months ago
JSON representation
A simple utility to list all methods of a given .NET Assembly and to invoke them
- Host: GitHub
- URL: https://github.com/enkomio/rundotnetdll
- Owner: enkomio
- License: mit
- Created: 2018-07-18T06:50:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-09-21T21:39:07.000Z (almost 5 years ago)
- Last Synced: 2025-04-22T12:56:04.543Z (about 1 year ago)
- Topics: dotnet, malware-analysis, reflection, tool
- Language: C#
- Homepage:
- Size: 180 KB
- Stars: 73
- Watchers: 3
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RunDotNetDll - It is a simple utility to list all methods of a given .NET Assembly and to invoke them.
_RunDotNetDll_ allows to introspect a given .NET Assembly in order to list all the methods which are implemented in the Assembly and to invoke them. All this is done via pure Reflection using dnlib library.
I created this utility in order to easily analyze malicious .NET programs that load at runtime additional .NET Assembly. Once that you have extracted the Assembly you need a mean to run it but if it is a DLL is not so easy.
With RunDotNetDll you can invoke a specific method of the given Assembly.
## Release Download
- [Source code][1]
- [Download binary][2]
## Usage
_RunDotNetDll_ has a syntax similar to RunDll32, it accepts a DLL and a method name (or its metadata token) to invoke. If no method is provided, a list of all defined methods is displayed.
Find below an example of execution:

## Authors
* **Antonio Parata** - *Core Developer* - [s4tan](https://twitter.com/s4tan)
## License
RunDotNetDll is licensed under the [MIT license](LICENSE.TXT)
[1]: https://github.com/enkomio/RunDotNetDll/tree/master/Src
[2]: https://github.com/enkomio/RunDotNetDll/releases/latest