-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adversary ID not being applied to new Operation I am creating #3156
Comments
Looks like your first issue -- we aim to respond to issues as quickly as possible. In the meantime, check out our documentation here: http://caldera.readthedocs.io/ |
May I ask you to cross-check that the adversary you reference indeed exists in your local instance? |
I have run the command and this is the output I received, this seems to work Output: |
I've been able to reproduce the output you see. It seems that the JSON you use as the input doesn't match what the API expects. If you check the model of the POST to /operations, you'll notice that The fixed JSON payload is: {
"name": "Discovery_API",
"adversary": { // this is new and fixes the problem you experience
"adversary_id": "0f4c3c67-845e-49a0-927e-90ed33c044e0"
},
"group": "red",
"planner": {
"id": "aaa7c857-37a0-4c4a-85f7-4e9f7f30e31a",
"name": "atomic",
"module": "app.planners.atomic",
"params": {}
},
"jitter": "2/8",
"autonomous": 1,
"state": "paused",
"auto_close": false,
"host_group": [
"vhdnpd"
]
} |
Great this worked, thankyou so much! |
Glad to hear. If this resolves the reported problem fully, please close the ticket so that it's clear that the issue has been adressed. |
Hey, I am working on a final year project for college where I want to create an operation in MITRE Caldera from my own Django web platform.
I am trying to work with the Caldera APIs to get this functionality to work however I am encountering issues when it comes to creating an operation with a specific adversary ID.
Primarily I want to create an operation that has the adversary ID to execute the caldera discovery adversary.
I am using the adversary ID "0f4c3c67-845e-49a0-927e-90ed33c044e0" to specify this.
However, when I ultimately create an operation with this ID, it always creates an operation with the adversary data "ad hoc" and never actually runs the Discovery commands I want to run.
Please help me, here is the command I run to create an operation.
curl -X POST http://127.0.0.1:8888/api/v2/operations
-H "Content-Type: application/json"
-H "KEY: "
-d '{
"name": "Discovery_API",
"adversary_id": "0f4c3c67-845e-49a0-927e-90ed33c044e0",
"group": "red",
"planner": {
"id": "aaa7c857-37a0-4c4a-85f7-4e9f7f30e31a",
"name": "atomic",
"module": "app.planners.atomic",
"params": {}
},
"jitter": "2/8",
"autonomous": 1,
"state": "paused",
"auto_close": false,
"host_group": ["vhdnpd"]
}'
The text was updated successfully, but these errors were encountered: