-
Notifications
You must be signed in to change notification settings - Fork 12
/
art.go
97 lines (77 loc) · 2.08 KB
/
art.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package atomicredteam
import (
"embed"
"fmt"
"regexp"
"strings"
)
var (
LOCAL string
REPO string
BUNDLED bool
TEMPDIR string
AtomicsFolderRegex = regexp.MustCompile(`PathToAtomicsFolder(\\|\/)`)
BlockQuoteRegex = regexp.MustCompile(`<\/?blockquote>`)
)
//go:embed include/*
var include embed.FS
func Logo() []byte {
logo, err := include.ReadFile("include/logo.txt")
if err != nil {
panic(err)
}
return logo
}
func Techniques() []string {
var techniques []string
entries, err := include.ReadDir("include/atomics")
if err != nil {
panic(err)
}
for _, entry := range entries {
if entry.IsDir() && strings.HasPrefix(entry.Name(), "T") {
techniques = append(techniques, entry.Name())
}
}
entries, err = include.ReadDir("include/custom")
if err != nil {
return techniques
}
for _, entry := range entries {
if entry.IsDir() && strings.HasPrefix(entry.Name(), "T") {
techniques = append(techniques, entry.Name())
}
}
return techniques
}
func Technique(tid string) ([]byte, string, error) {
// Check for a custom atomic first, then public.
if body, err := include.ReadFile("include/custom/" + tid + "/" + tid + ".yaml"); err == nil {
return body, "include/custom/", nil
}
if body, err := include.ReadFile("include/custom/" + tid + "/" + tid + ".yml"); err == nil {
return body, "include/custom/", nil
}
if body, err := include.ReadFile("include/atomics/" + tid + "/" + tid + ".yaml"); err == nil {
return body, "include/atomics/", nil
}
if body, err := include.ReadFile("include/atomics/" + tid + "/" + tid + ".yml"); err == nil {
return body, "include/atomics/", nil
}
return nil, "", fmt.Errorf("Atomic Test is not currently bundled")
}
func Markdown(tid string) ([]byte, error) {
var (
body []byte
err error
)
// Check for a custom atomic first, then public.
body, err = include.ReadFile("include/custom/" + tid + "/" + tid + ".md")
if err != nil {
body, err = include.ReadFile("include/atomics/" + tid + "/" + tid + ".md")
if err != nil {
return nil, fmt.Errorf("Atomic Test is not currently bundled")
}
}
return body, nil
}