MCPcopy Create free account
hub / github.com/STIXProject/python-stix / RelatedExploitTargets

Class RelatedExploitTargets

stix/exploit_target/__init__.py:127–138  ·  view source on GitHub ↗

A list of ``RelatedExploitTargets`` objects, defaults to empty array

Source from the content-addressed store, hash-verified

125
126
127class RelatedExploitTargets(GenericRelationshipList):
128 """
129 A list of ``RelatedExploitTargets`` objects, defaults to empty array
130 """
131 _namespace = "http://docs.oasis-open.org/cti/ns/stix/exploit-target-1"
132 _binding = exploit_target_binding
133 _binding_class = exploit_target_binding.RelatedExploitTargetsType
134
135 related_exploit_target = fields.TypedField("Related_Exploit_Target", RelatedExploitTarget, multiple=True, key_name="related_exploit_targets")
136
137 def __init__(self, related_exploit_targets=None, scope=None):
138 super(RelatedExploitTargets, self).__init__(scope, related_exploit_targets)

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected