| 54 | |
| 55 | |
| 56 | class ExploitTargets(stix.EntityList): |
| 57 | _binding = stix_common_binding |
| 58 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/common-1' |
| 59 | _binding_class = _binding.ExploitTargetsType |
| 60 | |
| 61 | exploit_target = fields.TypedField( |
| 62 | name="Exploit_Target", |
| 63 | type_=ExploitTarget, |
| 64 | multiple=True, |
| 65 | listfunc=partial(IdrefDeprecatedList, type=ExploitTarget) |
| 66 | ) |
| 67 | |
| 68 | |
| 69 | class Incidents(stix.EntityList): |
no outgoing calls
no test coverage detected