Stagers
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
GET /api/v2/stagers HTTP/1.1
Accept: */*
{
"records": [
{
"id": 1,
"name": "text",
"template": "text",
"one_liner": true,
"downloads": [
{
"id": 1,
"filename": "text",
"link": "text"
}
],
"options": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"user_id": 1,
"created_at": "2026-02-02T14:50:40.552Z",
"updated_at": "2026-02-02T14:50:40.552Z"
}
]
}POST /api/v2/stagers HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 298
{
"name": "MyStager",
"options": {
"Base64": "True",
"Bypasses": "",
"Language": "powershell",
"Listener": "",
"Obfuscate": "False",
"ObfuscateCommand": "Token\\All\\1",
"OutFile": "",
"Proxy": "default",
"ProxyCreds": "default",
"SafeChecks": "True",
"StagerRetries": "0",
"UserAgent": "default"
},
"template": "multi_launcher"
}{
"id": 1,
"name": "text",
"template": "text",
"one_liner": true,
"downloads": [
{
"id": 1,
"filename": "text",
"link": "text"
}
],
"options": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"user_id": 1,
"created_at": "2026-02-02T14:50:40.552Z",
"updated_at": "2026-02-02T14:50:40.552Z"
}GET /api/v2/stagers/{uid} HTTP/1.1
Accept: */*
{
"id": 1,
"name": "text",
"template": "text",
"one_liner": true,
"downloads": [
{
"id": 1,
"filename": "text",
"link": "text"
}
],
"options": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"user_id": 1,
"created_at": "2026-02-02T14:50:40.552Z",
"updated_at": "2026-02-02T14:50:40.552Z"
}PUT /api/v2/stagers/{uid} HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 60
{
"name": "text",
"options": {
"ANY_ADDITIONAL_PROPERTY": "text"
}
}{
"id": 1,
"name": "text",
"template": "text",
"one_liner": true,
"downloads": [
{
"id": 1,
"filename": "text",
"link": "text"
}
],
"options": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"user_id": 1,
"created_at": "2026-02-02T14:50:40.552Z",
"updated_at": "2026-02-02T14:50:40.552Z"
}DELETE /api/v2/stagers/{uid} HTTP/1.1
Accept: */*