Skip to content

v1.0.0

Compare
Choose a tag to compare
@Yimura Yimura released this 23 Feb 01:23
· 5 commits to master since this release
19d9b21

Version 1.0.0

With this version I've completely rewritten the Injector from scratch.

What changed

Arguments are no longer parsed from the terminal, instead you should only be using settings.json.

How the settings.json looks:

{
    "application_mode": 0,
    "injection_direction": 0,
    "local": {
        "file": "./some_dll.dll"
    },
    "target_application": "wordpad.exe",
    "web_server": {
        "dll_provider": "http://example.com",
        "file": "latest.dll",
        "version": 8
    }
}
Name Description Value
application_mode If the injector runs locally or with a remote server. WEB_SERVER=0 & LOCAL=1
target_application The process name of the application to inject into. string
local.file The local path to a DLL. string
web_server.dll_provider Web Server origin. string
web_server.file The file name to save the DLL to locally. string
web_server.version Machine version integer to compare with the remote version. int
injection_direction is currently not implemented, but still exists for future API.

Web Server

Server configuration remains unchanged.