| 41 | |
| 42 | |
| 43 | class CoursesOfAction(stix.EntityList): |
| 44 | _binding = stix_core_binding |
| 45 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/core-1' |
| 46 | _binding_class = _binding.CoursesOfActionType |
| 47 | |
| 48 | course_of_action = fields.TypedField( |
| 49 | name="Course_Of_Action", |
| 50 | type_=CourseOfAction, |
| 51 | multiple=True, |
| 52 | listfunc=partial(IdrefDeprecatedList, type=CourseOfAction) |
| 53 | ) |
| 54 | |
| 55 | |
| 56 | class ExploitTargets(stix.EntityList): |
no outgoing calls
no test coverage detected