Closed rcaroncd closed 4 years ago
Hi @rcaroncd. So few things:
See sequential.py for example: https://github.com/mitre/stockpile/blob/master/app/sequential.py
Concerning your planner logic:
" but I need to be able to apply some logic, based on other outputs from previous abilities, to be able to pass the right TGT ticket to the Pass The Ticket ability."
The new planner design can definitely handle this. After you execute your links that provide the proper output/facts, within a planner bucket you could grab these output/facts, do your logic, and then create/update facts OR store the info needed within a planner variable (as now the planners can also store any data they require as they move from ability-to-ability or bucket-to-bucket). Then when you go to execute the Pass The Ticket ability, the required information will be available as facts or as planner variables, that can then be used in ability.
But, and apologies, this does now rely on the user to implement the planner to carry out the desired functionality.
per @elegantmoose's comment: the planner overhaul is complete in bleeding-edge code. all of his planning tips/tricks are applicable.
to be more direct:
Reading these should clear up how to do what you're doing: https://caldera.readthedocs.io/en/latest/Learning-the-terminology.html#what-is-a-fact https://caldera.readthedocs.io/en/latest/Learning-the-terminology.html#what-is-an-ability https://caldera.readthedocs.io/en/latest/How-CALDERA-makes-decisions.html
Hello,
Can you please explain how the planners and requirements work? Because I am looking at the documentation, and only with the explanation of the terminology, it is not clear how to implement them. I'm looking at Stockpile's but I also don't understand very well what can be done with them.
I have the following scenario: a lateral movement attack with kerberos tickets (pass the ticket).
In one phase, I collect the TGT tickets that exist in the machine, and I should pass them to the ability (of the next phase) using a variable like "host.dump.tickets" (this way in the next ability I could access them). The problem comes when the next ability runs the Pass The Ticket, and what it expects is a single TGT ticket, I have used a parser to be able to process the output of the Dump Tickets ability but I need to be able to apply some logic, based on other outputs from previous abilities, to be able to pass the right TGT ticket to the Pass The Ticket ability.
So I was going through the Stockpile Worm (among other adversaries) and, if I'm not wrong, there's no direct way to tell:
"Take the output of the Dump Ticket, and take the output of this other ability (which looks for the domain users and their characteristics) and be able to determine what data to pass to the next ability." (I don't want to have to do that logic from another ability in the agent)
That's why I saw the planners and thought that they could be the solution, but I don't see any clear example or explanation of use.
I hope you can clarify it.
Greetings and thank you very much