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

40 lines
1.1 KiB
JSON

{
"name": "chisel",
"display_name": "chisel",
"kind": "module",
"description": "Launch the TeamServer-managed chisel.exe tool on a Windows beacon. The TeamServer generates shellcode from Tools/Windows/<arch>/chisel.exe before sending the task.",
"command_template": "chisel {action} {server:q?} {reverse_spec:q?}",
"target": "beacon",
"requires_session": true,
"platforms": ["windows"],
"archs": ["x86", "x64", "arm64"],
"args": [
{
"name": "action",
"type": "enum",
"required": true,
"description": "Chisel action.",
"values": ["client", "status", "stop"]
},
{
"name": "server",
"type": "text",
"required": false,
"description": "Server host and port used by chisel client."
},
{
"name": "reverse_spec",
"type": "text",
"required": false,
"description": "Reverse socks or reverse port-forward specification."
}
],
"examples": [
"chisel status",
"chisel stop 1234",
"chisel client 127.0.0.1:9001 R:socks",
"chisel client 127.0.0.1:9001 R:1080:127.0.0.1:1080"
],
"source": "manifest"
}