Skip to content

Initial Release

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Aug 15:16
· 30 commits to master since this release
fa4fbab

Requirements:

  • Web server (when using automatic mode)
  • Injector

How to use:

There are 2 modes, automatic mode and manual mode.

  1. Uses a webserver to download the latest version of your dll.
  2. Just inject a dll of your choosing in a target process.

Automatic Mode

Make sure you have webserver and in the web root make a file called version.json, fill in the following details.

{
	"file": "menu.dll", // path to the dll file on the webserver starting from the root / is prefixed in the binary
	"version": "0.1.3", // version number to show 
	"version_machine": 13 // version number to compare against 
}

When you run the injector for the first time it'll generate a file called settings.json with the following contents:

{
    "dll_provider": "http://example.com", // the host from which to download updates
    "target_application": "wordpad.exe", // the target application to inject into
    "version": 11 // the version that is compared against on the server
}

Manual Mode

Alternatively you can run the injector set your target program and the dll that should be injected into.

Open a command window:

Injector.exe wordpad.exe path_to.dll