Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Tool ¶
type Tool struct {
baseobject.CommonObjectProperties
properties.NameProperty
properties.DescriptionProperty
properties.KillChainPhasesProperty
ToolVersion string `json:"tool_version,omitempty"`
}
Tool - This type implements the STIX 2 Tool SDO and defines all of the properties methods needed to create and work with the STIX Tool SDO. All of the methods not defined local to this type are inherited from the individual properties.
The following information comes directly from the STIX 2 specification documents.
Tools are legitimate software that can be used by threat actors to perform attacks. Knowing how and when threat actors use such tools can be important for understanding how campaigns are executed. Unlike malware, these tools or software packages are often found on a system and have legitimate purposes for power users, system administrators, network administrators, or even normal users. Remote access tools (e.g., RDP) and network scanning tools (e.g., Nmap) are examples of Tools that may be used by a Threat Actor during an attack.
The Tool SDO characterizes the properties of these software tools and can be used as a basis for making an assertion about how a Threat Actor uses them during an attack. It contains properties to name and describe the tool, a list of Kill Chain Phases the tool can be used to carry out, and the version of the tool.
This SDO MUST NOT be used to characterize malware. Further, Tool MUST NOT be used to characterize tools used as part of a course of action in response to an attack. Tools used during response activities can be included directly as part of a Course of Action SDO.
func New ¶
func New() *Tool
New - This function will create a new STIX Tool object and return it as a pointer.
func (*Tool) SetToolVersion ¶
SetToolVersion - This method takes in a string value representing the version of the tool and updates the tool version property.