-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
262 lines (218 loc) · 5.89 KB
/
client.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
package grouppolicy
import (
"encoding/json"
"errors"
"fmt"
"strings"
ps "github.com/ao-com/go-powershell"
"github.com/ao-com/go-powershell/backend"
)
type Client struct {
}
// IsGroupPolicyModuleInstalled
// 判断是否安装了powershell的组策略模块
func IsGroupPolicyModuleInstalled() (bool, error) {
cmd := "if (Get-Module -List grouppolicy) {'true'}"
stdout, _, err := runLocalPowershell(cmd)
if err != nil {
return false, err
}
return strings.Contains(stdout, "true"), nil
}
// runLocalPowershell
func runLocalPowershell(cmd string) (stdout string, stderr string, err error) {
back := &backend.Local{}
shell, err := ps.New(back)
if err != nil {
return "", "", err
}
defer shell.Exit()
fmt.Printf("%s\n", cmd)
return shell.Execute(cmd)
}
// NewGPO 新建一个GPO
func (cli Client) NewGPO(name string, options map[string]interface{}) (*GPO, error) {
var optionStr string
if options != nil {
for k, v := range options {
switch strings.ToLower(k) {
case "comment": // GPO描述
optionStr += fmt.Sprintf(` -Comment "%s"`, v)
case "domain": // 域名
optionStr += fmt.Sprintf(` -Domain "%s"`, v)
case "server": // 远端主机
optionStr += fmt.Sprintf(` -Server "%s"`, v)
case "startergponame":
optionStr += fmt.Sprintf(` -StarterName "%s"`, v)
case "startergpoguid":
optionStr += fmt.Sprintf(` -StarterGpoGuid %s`, v)
}
}
}
cmd := fmt.Sprintf(`New-GPO "%s"`, name)
if len(optionStr) > 0 {
cmd += optionStr
}
cmd += `| ConvertTo-Json`
stdout, _, err := runLocalPowershell(cmd)
if err != nil {
return nil, err
}
gpo := &GPO{}
err = json.Unmarshal([]byte(stdout), gpo)
if err != nil {
return nil, err
}
return gpo, err
}
// RemoveGPO 删除一个GPO
func (cli Client) RemoveGPO(options map[string]interface{}) error {
var optionStr string
if options != nil {
for k, v := range options {
switch strings.ToLower(k) {
case "server":
optionStr += fmt.Sprintf(` -Server "%s"`, v)
case "guid":
optionStr += fmt.Sprintf(` -Guid "%s"`, v)
case "name":
optionStr += fmt.Sprintf(` -Name "%s"`, v)
case "domain":
optionStr += fmt.Sprintf(` -Domain "%s"`, v)
case "keeplinks":
optionStr += " -KeepLinks"
}
}
}
cmd := fmt.Sprintf(`Remove-GPO %s`, optionStr)
_, _, err := runLocalPowershell(cmd)
return err
}
//
func (cli Client) GetAllGPO(optionals map[string]interface{}) (gpos []*GPO, err error) {
var optionalStr string
cmd := `Get-GPO -All`
if optionals != nil {
for k, v := range optionals {
switch strings.ToLower(k) {
case "server":
optionalStr += fmt.Sprintf(` -Server "%s"`, v)
case "domain":
optionalStr += fmt.Sprintf(` -Domain "%s"`, v)
}
}
}
if len(optionalStr) > 0 {
cmd += optionalStr
}
cmd += ` | ConvertTo-Json`
stdout, _, err := runLocalPowershell(cmd)
if err != nil {
return nil, err
}
gpos = make([]*GPO, 0)
err = json.Unmarshal([]byte(stdout), &gpos)
if err != nil {
return nil, err
}
return gpos, nil
}
// 返回指定参数条件的GPO列表
// options may have some options:
// Guid/Name/Domain/Server,All
// you can see how to use from http://go.microsoft.com/fwlink/?LinkId=216700
func (cli Client) GetGPO(nameOrGuid string, optionals map[string]interface{}) (*GPO, error) {
var optionalStr string
if optionals != nil {
for k, v := range optionals {
switch strings.ToLower(k) {
case "server":
optionalStr += fmt.Sprintf(` -Server "%s"`, v)
case "domain":
optionalStr += fmt.Sprintf(` -Domain "%s"`, v)
}
}
}
cmd := fmt.Sprintf(`Get-GPO %s`, nameOrGuid)
if len(optionalStr) > 0 {
cmd += optionalStr
}
cmd += ` | ConvertTo-Json`
stdout, _, err := runLocalPowershell(cmd)
if err != nil {
return nil, err
}
gpo := &GPO{}
err = json.Unmarshal([]byte(stdout), gpo)
if err != nil {
return nil, err
}
return gpo, nil
}
// RestoreGPO 还原指定备份GPO
func (cli Client) RestoreGPO(name string, path string) error {
cmd := fmt.Sprintf(`Restore-GPO -Name "%s" -Path "%s"`, name, path)
_, _, err := runLocalPowershell(cmd)
return err
}
// SetGPLink 设置GPO链接的属性
func (cli Client) SetGPLink() error {
return errors.New("unknown")
}
// NewGPLink 链接一个GPO到站点(site),域名(Domain)或者组织单位(OU)
func (cli Client) NewGPLink(srcGpoOption map[string]interface{}, target string) error {
srcGpoOptionStr := ""
if srcGpoOption != nil {
for k, v := range srcGpoOption {
switch strings.ToLower(k) {
case "server":
srcGpoOptionStr += fmt.Sprintf(` -Server "%s"`, v)
case "guid":
srcGpoOptionStr += fmt.Sprintf(` -Name "%s"`, v)
case "name":
srcGpoOptionStr += fmt.Sprintf(` -Guid "%s"`, v)
case "domain":
srcGpoOptionStr += fmt.Sprintf(` -Domain "%s"`, v)
}
}
}
cmd := fmt.Sprintf(`New-GPLink %s -Target "%s"`, srcGpoOptionStr, target)
_, _, err := runLocalPowershell(cmd)
return err
}
// RemoveGPLink 删除一个GPO链接
func (cli Client) RemoveGPLink(srcGpoOption map[string]interface{}, target string) error {
optionStr := ""
if srcGpoOption != nil {
for k, v := range srcGpoOption {
switch strings.ToLower(k) {
case "server":
optionStr += fmt.Sprintf(` -Server "%s"`, v)
case "guid":
optionStr += fmt.Sprintf(` -Name "%s"`, v)
case "name":
optionStr += fmt.Sprintf(` -Guid "%s"`, v)
case "domain":
optionStr += fmt.Sprintf(` -Domain "%s"`, v)
}
}
}
cmd := fmt.Sprintf(`Remove-GPLink %s -Target "%s"`, optionStr, target)
_, _, err := runLocalPowershell(cmd)
return err
}
// InvokeGpupdate 更新指定主机的组策略
func (cli Client) InvokeGpupdate(computer, target string) error {
cmd := fmt.Sprintf(`Invoke-GPUpdate -Computer "%s" -Target "%s"`, computer, target)
_, _, err := runLocalPowershell(cmd)
return err
}
// RemoveGPRegistryValue
func (cli Client) RemoveGPRegistryValue() {
}
// GetGPRegistryValue
func (cli Client) GetGPRegistryValue() {
}
// SetGPRegistryValue
func (cli Client) SetGPRegistryValue() {
}