Adds an :class:`.ExploitTarget` object to the :attr:`exploit_targets` collection.
(self, exploit_target)
| 166 | self.courses_of_action.append(course_of_action) |
| 167 | |
| 168 | def add_exploit_target(self, exploit_target): |
| 169 | """Adds an :class:`.ExploitTarget` object to the |
| 170 | :attr:`exploit_targets` collection. |
| 171 | |
| 172 | """ |
| 173 | if self.exploit_targets is None: |
| 174 | self.exploit_targets = ExploitTargets() |
| 175 | self.exploit_targets.append(exploit_target) |
| 176 | |
| 177 | def add_ttp(self, ttp): |
| 178 | """Adds an :class:`.TTP` object to the :attr:`ttps` collection. |
nothing calls this directly
no test coverage detected