-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.go
161 lines (140 loc) · 3.8 KB
/
util.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package util
import (
"bytes"
"io"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"github.com/inconshreveable/log15"
"github.com/parnurzeal/gorequest"
"github.com/spf13/viper"
"golang.org/x/xerrors"
)
func GetDefaultLogDir() string {
defaultLogDir := "/var/log/exploitdb-go"
if runtime.GOOS == "windows" {
defaultLogDir = filepath.Join(os.Getenv("APPDATA"), "exploitdb-go")
}
return defaultLogDir
}
func SetLogger(logToFile bool, logDir string, debug, logJSON bool) error {
stderrHandler := log15.StderrHandler
logFormat := log15.LogfmtFormat()
if logJSON {
logFormat = log15.JsonFormatEx(false, true)
stderrHandler = log15.StreamHandler(os.Stderr, logFormat)
}
lvlHandler := log15.LvlFilterHandler(log15.LvlInfo, stderrHandler)
if debug {
lvlHandler = log15.LvlFilterHandler(log15.LvlDebug, stderrHandler)
}
var handler log15.Handler
if logToFile {
if _, err := os.Stat(logDir); err != nil {
if os.IsNotExist(err) {
if err := os.Mkdir(logDir, 0700); err != nil {
return xerrors.Errorf("Failed to create log directory. err: %w", err)
}
} else {
return xerrors.Errorf("Failed to check log directory. err: %w", err)
}
}
logPath := filepath.Join(logDir, "exploitdb-go.log")
if _, err := os.OpenFile(logPath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644); err != nil {
return xerrors.Errorf("Failed to open a log file. err: %w", err)
}
handler = log15.MultiHandler(
log15.Must.FileHandler(logPath, logFormat),
lvlHandler,
)
} else {
handler = lvlHandler
}
log15.Root().SetHandler(handler)
return nil
}
func FetchURL(url string) ([]byte, error) {
httpProxy := viper.GetString("http-proxy")
resp, body, errs := gorequest.New().Proxy(httpProxy).Get(url).Type("text").EndBytes()
if len(errs) > 0 || resp == nil || resp.StatusCode != 200 {
return nil, xerrors.Errorf("HTTP error. url: %s, err: %v", url, errs)
}
return body, nil
}
func CacheDir() string {
tmpDir, err := os.UserCacheDir()
if err != nil {
tmpDir = os.TempDir()
}
return filepath.Join(tmpDir, "exploitdb-go")
}
func IsCommandAvailable(name string) bool {
cmd := exec.Command(name, "--help")
if err := cmd.Run(); err != nil {
return false
}
return true
}
func Exists(path string) (bool, error) {
_, err := os.Stat(path)
if err == nil {
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return true, err
}
func Exec(command string, args []string) (string, error) {
cmd := exec.Command(command, args...)
var stdoutBuf, stderrBuf bytes.Buffer
cmd.Stdout = &stdoutBuf
cmd.Stderr = &stderrBuf
if err := cmd.Run(); err != nil {
log15.Debug(stderrBuf.String())
return "", xerrors.Errorf("failed to exec: %w", err)
}
return stdoutBuf.String(), nil
}
func FilterTargets(prefixPath string, targets map[string]struct{}) (map[string]struct{}, error) {
filtered := map[string]struct{}{}
for filename := range targets {
if strings.HasPrefix(filename, prefixPath) {
filtered[filename] = struct{}{}
}
}
return filtered, nil
}
func FileWalk(root string, targetFiles map[string]struct{}, walkFn func(r io.Reader, path string) error) error {
err := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {
if err != nil {
return xerrors.Errorf("prevent panic by handling failure accessing a path %q: %v\n", path, err)
}
if info.IsDir() {
return nil
}
rel, err := filepath.Rel(root, path)
if err != nil {
return xerrors.Errorf("error in filepath rel: %w", err)
}
if _, ok := targetFiles[rel]; !ok {
return nil
}
if info.Size() == 0 {
log15.Debug("invalid size: %s", path)
return nil
}
f, err := os.Open(path)
if err != nil {
return xerrors.Errorf("failed to open file: %w", err)
}
defer f.Close()
return walkFn(f, path)
})
if err != nil {
return xerrors.Errorf("error in file walk: %w", err)
}
return nil
}