https://github.com/owlinux1000/simpledllloader
A Simple Tool for Debugging .NET DLL
https://github.com/owlinux1000/simpledllloader
Last synced: about 1 month ago
JSON representation
A Simple Tool for Debugging .NET DLL
- Host: GitHub
- URL: https://github.com/owlinux1000/simpledllloader
- Owner: owlinux1000
- Created: 2023-01-23T21:02:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T21:52:10.000Z (over 3 years ago)
- Last Synced: 2025-03-06T00:26:16.147Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SimpleDllLoader
## How to use
```
C:\>SimpleDllLoader.exe -h
usage: SimpleDllLoader v1.0.0
A Simple Loader for .NET DLL
required arguments:
-d, --dll DLL_PATH Specify a path for DLL
-c, --class CLASS Specify a class
optional arguments:
-h, --help Show this help message and exit
-ca, --cctor-args ARGS Specify constructor arguments
-ct, --cctor-types TYPES Specify constructor argument types
-n, --namespace NAMESPACE Specify a namespace
-m, --method METHOD Specify a method name
-ma, --method-args ARGS Specify method arguments
-mt, --method-types TYPES Specify method argument types
```
### Case1: Execute a constructor without any argument
```
C:\>SimpleDllLoader.exe -d C:\FakeDll.dll -c FakeDll
```
### Case2: Execute a constructor with argument
```
C:\>SimpleDllLoader.exe -d C:\FakeDll.dll -c FakeDll -ca Test -ct System.String
```