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
874 B
JSON
33 lines
874 B
JSON
{
|
|
"name": "kerberosUseTicket",
|
|
"display_name": "kerberosUseTicket",
|
|
"kind": "module",
|
|
"description": "Import a Kerberos ticket upload artifact into the current LUID.",
|
|
"command_template": "kerberosUseTicket {ticket_artifact:q}",
|
|
"target": "beacon",
|
|
"requires_session": true,
|
|
"platforms": ["windows"],
|
|
"archs": ["x86", "x64", "arm64"],
|
|
"args": [
|
|
{
|
|
"name": "ticket_artifact",
|
|
"type": "artifact",
|
|
"required": true,
|
|
"description": ".kirbi ticket artifact from UploadedArtifacts.",
|
|
"artifact_filter": {
|
|
"category": "upload",
|
|
"scope": "operator",
|
|
"target": "beacon",
|
|
"platform": "session.platform",
|
|
"arch": "session.arch",
|
|
"runtime": "file",
|
|
"name_contains": ".kirbi"
|
|
}
|
|
}
|
|
],
|
|
"examples": [
|
|
"kerberosUseTicket ticket.kirbi"
|
|
],
|
|
"source": "manifest"
|
|
}
|