forked from Velocidex/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.go
232 lines (189 loc) · 6.17 KB
/
users.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
/*
Velociraptor - Dig Deeper
Copyright (C) 2019-2022 Rapid7 Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"crypto/rand"
"fmt"
"os"
"strings"
"golang.org/x/crypto/ssh/terminal"
"www.velocidex.com/golang/velociraptor/api/authenticators"
"www.velocidex.com/golang/velociraptor/json"
logging "www.velocidex.com/golang/velociraptor/logging"
"www.velocidex.com/golang/velociraptor/services"
"www.velocidex.com/golang/velociraptor/services/users"
"www.velocidex.com/golang/velociraptor/startup"
)
var (
user_command = app.Command("user", "Manage GUI users")
user_add = user_command.Command("add", "Add a user. If the user already exists this allows to change their password.")
user_add_name = user_add.Arg(
"username", "Username to add").Required().String()
user_add_password = user_add.Arg(
"password",
"The password. If not specified we read from the terminal.").String()
user_add_roles = user_add.Flag("role", "Specify the role for this user.").
Required().String()
user_show = user_command.Command("show", "Display information about a user")
user_show_name = user_show.Arg(
"username", "Username to show").Required().String()
user_show_hashes = user_show.Flag("with_hashes", "Displays the password hashes too.").
Bool()
user_lock = user_command.Command(
"lock", "Lock a user immediately by locking their account.")
user_lock_name = user_lock.Arg(
"username", "Username to lock").Required().String()
)
func doAddUser() error {
logging.DisableLogging()
config_obj, err := makeDefaultConfigLoader().
WithRequiredFrontend().
WithRequiredUser().LoadAndValidate()
if err != nil {
return fmt.Errorf("Unable to load config file: %w", err)
}
config_obj.Services = services.GenericToolServices()
ctx, cancel := install_sig_handler()
defer cancel()
sm, err := startup.StartToolServices(ctx, config_obj)
if err != nil {
return fmt.Errorf("Starting services: %w", err)
}
defer sm.Close()
err = sm.Start(users.StartUserManager)
if err != nil {
return err
}
user_record, err := users.NewUserRecord(config_obj, *user_add_name)
if err != nil {
return fmt.Errorf("add user: %s", err)
}
err = services.GrantRoles(config_obj, *user_add_name,
strings.Split(*user_add_roles, ","))
if err != nil {
return err
}
authenticator, err := authenticators.NewAuthenticator(config_obj)
if err != nil {
return fmt.Errorf("Granting roles: %w", err)
}
if authenticator.IsPasswordLess() {
fmt.Printf("Authentication will occur via %v - "+
"therefore no password needs to be set.",
config_obj.GUI.Authenticator.Type)
password := make([]byte, 100)
_, err = rand.Read(password)
if err != nil {
return err
}
password_str := string(password)
user_add_password = &password_str
} else if *user_add_password == "" {
fmt.Printf("Enter user's password: ")
password, err := terminal.ReadPassword(int(os.Stdin.Fd()))
if err != nil {
return fmt.Errorf("Unable to read password from terminal: %w", err)
}
password_str := string(password)
user_add_password = &password_str
}
users.SetPassword(user_record, *user_add_password)
users_manager := services.GetUserManager()
err = users_manager.SetUser(ctx, user_record)
if err != nil {
return fmt.Errorf("Unable to set user account: %w", err)
}
fmt.Printf("\r\n")
return nil
}
func doShowUser() error {
logging.DisableLogging()
config_obj, err := makeDefaultConfigLoader().
WithRequiredFrontend().LoadAndValidate()
if err != nil {
return fmt.Errorf("Unable to load config file: %w", err)
}
config_obj.Services = services.GenericToolServices()
ctx, cancel := install_sig_handler()
defer cancel()
sm, err := startup.StartToolServices(ctx, config_obj)
if err != nil {
return fmt.Errorf("Starting services: %w", err)
}
defer sm.Close()
users_manager := services.GetUserManager()
user_record, err := users_manager.GetUser(ctx, *user_show_name)
if err != nil {
return err
}
if *user_show_hashes {
user_record, err := users_manager.GetUserWithHashes(ctx, *user_show_name)
if err != nil {
return err
}
fmt.Println("The following are suitable to add into the initial users field of the config file.")
fmt.Printf("Password hash is %02x\n", user_record.PasswordHash)
fmt.Printf("Password salt is %02x\n", user_record.PasswordSalt)
}
s, err := json.MarshalIndent(user_record)
if err != nil {
return err
}
os.Stdout.Write(s)
return nil
}
func doLockUser() error {
logging.DisableLogging()
config_obj, err := makeDefaultConfigLoader().
WithRequiredFrontend().LoadAndValidate()
if err != nil {
return fmt.Errorf("Unable to load config file: %w", err)
}
config_obj.Services = services.GenericToolServices()
ctx, cancel := install_sig_handler()
defer cancel()
sm, err := startup.StartToolServices(ctx, config_obj)
if err != nil {
return fmt.Errorf("Starting services: %w", err)
}
defer sm.Close()
users_manager := services.GetUserManager()
user_record, err := users_manager.GetUser(ctx, *user_lock_name)
if err != nil {
return fmt.Errorf("Unable to find user %s", *user_lock_name)
}
user_record.Locked = true
err = users_manager.SetUser(ctx, user_record)
if err != nil {
return fmt.Errorf("Unable to set user account: %w", err)
}
fmt.Printf("\r\n")
return nil
}
func init() {
command_handlers = append(command_handlers, func(command string) bool {
switch command {
case user_add.FullCommand():
FatalIfError(user_add, doAddUser)
case user_lock.FullCommand():
FatalIfError(user_lock, doLockUser)
case user_show.FullCommand():
FatalIfError(user_show, doShowUser)
default:
return false
}
return true
})
}