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
33 lines
878 B
JSON
33 lines
878 B
JSON
{
|
|
"name": "miniDump",
|
|
"display_name": "miniDump",
|
|
"kind": "module",
|
|
"description": "Dump LSASS to an XORed generated TeamServer artifact, or decrypt an XORed dump locally.",
|
|
"command_template": "miniDump {action} {artifact_name:q?}",
|
|
"target": "beacon",
|
|
"requires_session": true,
|
|
"platforms": ["windows"],
|
|
"archs": ["x86", "x64", "arm64"],
|
|
"args": [
|
|
{
|
|
"name": "action",
|
|
"type": "enum",
|
|
"required": true,
|
|
"description": "MiniDump action.",
|
|
"values": ["dump", "decrypt"]
|
|
},
|
|
{
|
|
"name": "artifact_name",
|
|
"type": "path",
|
|
"required": false,
|
|
"description": "Optional generated artifact filename hint for dump, or input XORed dump path for decrypt."
|
|
}
|
|
],
|
|
"examples": [
|
|
"miniDump dump",
|
|
"miniDump dump lsass.xored",
|
|
"miniDump decrypt /tmp/lsass.xored"
|
|
],
|
|
"source": "manifest"
|
|
}
|