Documentation
¶
Overview ¶
Example ¶
package main
import (
"fmt"
"github.com/Secyourflow/attck"
)
func main() {
if tactic, ok := attck.Objects["TA0004"]; ok {
fmt.Println(tactic.Name)
fmt.Println(tactic.URL)
}
if technique, ok := attck.Objects["T1548.002"]; ok {
fmt.Println(technique.Name)
fmt.Println(technique.FullName)
fmt.Println(technique.URL)
}
}
Output: Privilege Escalation https://attack.mitre.org/tactics/TA0004 Bypass User Account Control Abuse Elevation Control Mechanism: Bypass User Account Control https://attack.mitre.org/techniques/T1548/002
Index ¶
Examples ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Objects = map[string]*Object{}/* 794 elements not displayed */
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.