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
27 lines
591 B
JSON
27 lines
591 B
JSON
{
|
|
"name": "ls",
|
|
"display_name": "ls",
|
|
"kind": "module",
|
|
"description": "List the contents of a directory on the beacon.",
|
|
"command_template": "ls {path:q?}",
|
|
"target": "beacon",
|
|
"requires_session": true,
|
|
"platforms": ["windows", "linux"],
|
|
"archs": ["any"],
|
|
"args": [
|
|
{
|
|
"name": "path",
|
|
"type": "path",
|
|
"required": false,
|
|
"description": "Remote directory path. Defaults to the beacon current working directory.",
|
|
"variadic": true
|
|
}
|
|
],
|
|
"examples": [
|
|
"ls",
|
|
"ls /tmp",
|
|
"ls C:\\Users\\Public"
|
|
],
|
|
"source": "manifest"
|
|
}
|