forked from Velocidex/velociraptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.go
163 lines (133 loc) · 4.75 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
/*
Velociraptor - Hunting Evil
Copyright (C) 2019 Velocidex Innovations.
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"
kingpin "gopkg.in/alecthomas/kingpin.v2"
"www.velocidex.com/golang/velociraptor/acls"
"www.velocidex.com/golang/velociraptor/api/authenticators"
"www.velocidex.com/golang/velociraptor/json"
"www.velocidex.com/golang/velociraptor/users"
)
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_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() {
config_obj, err := DefaultConfigLoader.
WithRequiredFrontend().
WithRequiredUser().LoadAndValidate()
kingpin.FatalIfError(err, "Unable to load config file")
sm, err := startEssentialServices(config_obj)
kingpin.FatalIfError(err, "Starting services.")
defer sm.Close()
user_record, err := users.NewUserRecord(*user_add_name)
if err != nil {
kingpin.FatalIfError(err, "add user:")
}
err = acls.GrantRoles(config_obj, *user_add_name,
strings.Split(*user_add_roles, ","))
kingpin.FatalIfError(err, "Granting roles: ")
authenticator, err := authenticators.NewAuthenticator(config_obj)
kingpin.FatalIfError(err, "Granting roles: ")
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)
kingpin.FatalIfError(err, "rand")
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 {
kingpin.FatalIfError(
err, "Unable to read password from terminal.")
}
password_str := string(password)
user_add_password = &password_str
}
users.SetPassword(user_record, *user_add_password)
err = users.SetUser(config_obj, user_record)
if err != nil {
kingpin.FatalIfError(
err, "Unable to set user account.")
}
fmt.Printf("\r\n")
}
func doShowUser() {
config_obj, err := DefaultConfigLoader.WithRequiredFrontend().LoadAndValidate()
kingpin.FatalIfError(err, "Unable to load config file")
sm, err := startEssentialServices(config_obj)
kingpin.FatalIfError(err, "Starting services.")
defer sm.Close()
user_record, err := users.GetUser(config_obj, *user_show_name)
kingpin.FatalIfError(err, "Unable to find user %s", *user_show_name)
s, err := json.MarshalIndent(user_record)
if err == nil {
os.Stdout.Write(s)
}
}
func doLockUser() {
config_obj, err := DefaultConfigLoader.WithRequiredFrontend().LoadAndValidate()
kingpin.FatalIfError(err, "Unable to load config file")
sm, err := startEssentialServices(config_obj)
kingpin.FatalIfError(err, "Starting services.")
defer sm.Close()
user_record, err := users.GetUser(config_obj, *user_lock_name)
kingpin.FatalIfError(err, "Unable to find user %s", *user_lock_name)
user_record.Locked = true
err = users.SetUser(config_obj, user_record)
if err != nil {
kingpin.FatalIfError(
err, "Unable to set user account.")
}
fmt.Printf("\r\n")
}
func init() {
command_handlers = append(command_handlers, func(command string) bool {
switch command {
case user_add.FullCommand():
doAddUser()
case user_lock.FullCommand():
doLockUser()
case user_show.FullCommand():
doShowUser()
default:
return false
}
return true
})
}