package
Version:
v0.0.0-...-0b6db94
Opens a new window with list of versions in this module.
Published: Nov 30, 2020
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Behavior struct {
OutboundConnections []Connection `json:"connections"`
DNSLookups []DNSLookup `json:"dns"`
FileOperations []FileOperation `json:"files"`
Commands []string `json:"commands"`
}
type Connection struct {
Protocol string `json:"protocol"`
IPAddress string `json:"address"`
Port string `json:"port"`
}
type DNSLookup struct {
Name string `json:"name"`
IPAddresses []string `json:"addresses"`
}
type FileOperation struct {
Operation string `json:"mode"`
Filename string `json:"filename"`
Flag string `json:"flag"`
}
type Output struct {
Files []string `json:"files"`
Package Package `json:"package"`
Behavior *Behavior `json:"results"`
}
type Package struct {
Name string `json:"name,omitempty"`
Version string `json:"version,omitempty"`
Type string `json:"type,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.