mirror of
https://github.com/maxDcb/C2Core
synced 2026-06-08 15:48:01 +00:00
108a370807
* CommandSpecs * CommandSpecs * feat(command-specs): add simple module specs * listModule * AssemblyExec * AssemblyExecTests * Minor * Inject * InjectTests * Spec modules * Folder layout * upload & download * Chisel Minidump Powershell & Script * CoffLoader DotnetExec /KerberosUseTicket PsExec PwSh ScreenShot * add artifact_filters * Minor * stabilisation * Fixes * manual test * manual test * manual test * manual test * manual test * manual test * manual test * manual test * ScreenShot png * socks5 hostname * Maj for AI * minor
32 lines
791 B
JSON
32 lines
791 B
JSON
{
|
|
"name": "loadModule",
|
|
"display_name": "loadModule",
|
|
"kind": "common",
|
|
"description": "Load a beacon module into the current session.",
|
|
"command_template": "loadModule {module:q}",
|
|
"target": "beacon",
|
|
"requires_session": true,
|
|
"platforms": ["windows", "linux"],
|
|
"archs": ["x86", "x64", "arm64", "any"],
|
|
"args": [
|
|
{
|
|
"name": "module",
|
|
"type": "artifact",
|
|
"required": true,
|
|
"description": "Module artifact compatible with the current session.",
|
|
"artifact_filter": {
|
|
"category": "module",
|
|
"target": "beacon",
|
|
"platform": "session.platform",
|
|
"arch": "session.arch",
|
|
"runtime": "native"
|
|
}
|
|
}
|
|
],
|
|
"examples": [
|
|
"loadModule Inject.dll",
|
|
"loadModule pwd"
|
|
],
|
|
"source": "manifest"
|
|
}
|