Files
Maxime dcb 108a370807 CommandSpecs & Tests
* 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
2026-05-10 21:28:40 +02:00

31 lines
787 B
JSON

{
"name": "download",
"display_name": "download",
"kind": "module",
"description": "Download a remote file from the beacon.",
"command_template": "download {remote_path:q} {artifact_name:q?}",
"target": "beacon",
"requires_session": true,
"platforms": ["windows", "linux"],
"archs": ["any"],
"args": [
{
"name": "remote_path",
"type": "path",
"required": true,
"description": "Path of the file on the beacon."
},
{
"name": "artifact_name",
"type": "text",
"required": false,
"description": "Optional generated artifact filename hint. The TeamServer controls the storage path."
}
],
"examples": [
"download /tmp/file.txt",
"download C:\\Temp\\file.txt file.txt"
],
"source": "manifest"
}