-
Notifications
You must be signed in to change notification settings - Fork 36
/
User.ps1
327 lines (286 loc) · 8.19 KB
/
User.ps1
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
#region User
####################################################################
<#
.Synopsis
Get a information about the Nessus User for a Session.
.DESCRIPTION
Get a information about the Nessus User for a Session.
.EXAMPLE
Get-NessusUser -SessionId 0 -Verbose
VERBOSE: GET https://192.168.1.205:8834/users with 0-byte payload
VERBOSE: received 125-byte response of content type application/json
Name : carlos
UserName : carlos
Email :
Id : 2
Type : local
Permission : Sysadmin
LastLogin : 2/15/2015 4:52:56 PM
#>
function Get-NessusUser
{
[CmdletBinding()]
Param
(
# Nessus session Id
[Parameter(Mandatory=$true,
Position=0,
ValueFromPipelineByPropertyName=$true)]
[Alias('Index')]
[int32[]]
$SessionId = @()
)
Begin
{
$origin = New-Object -Type DateTime -ArgumentList 1970, 1, 1, 0, 0, 0, 0
$ToProcess = @()
foreach($i in $SessionId)
{
$Connections = $Global:NessusConn
foreach($Connection in $Connections)
{
if ($Connection.SessionId -eq $i)
{
$ToProcess += $Connection
}
}
}
}
Process
{
foreach($Connection in $ToProcess)
{
$Users = InvokeNessusRestRequest -SessionObject $Connection -Path '/users' -Method 'Get'
if ($Users -is [psobject])
{
$Users.users | ForEach-Object -Process {
$UserProperties = [ordered]@{}
$UserProperties.Add('Name', $_.name)
$UserProperties.Add('UserName', $_.username)
$UserProperties.Add('Email', $_.email)
$UserProperties.Add('UserId', $_.id)
$UserProperties.Add('Type', $_.type)
$UserProperties.Add('Permission', $PermissionsId2Name[$_.permissions])
$UserProperties.Add('LastLogin', $origin.AddSeconds($_.lastlogin).ToLocalTime())
$UserProperties.Add('SessionId', $Connection.SessionId)
$UserObj = New-Object -TypeName psobject -Property $UserProperties
$UserObj.pstypenames[0] = 'Nessus.User'
$UserObj
}
}
}
}
End{}
}
<#
.Synopsis
Add a new user to a Nessus Server.
.DESCRIPTION
Add a new user to a Nessus Server.
.EXAMPLE
New-NessusUser -SessionId 0 -Credential (Get-Credential) -Permission Sysadmin
#>
function New-NessusUser
{
[CmdletBinding()]
Param
(
# Nessus session Id
[Parameter(Mandatory=$true,
Position=0,
ValueFromPipelineByPropertyName=$true)]
[Alias('Index')]
[int32[]]
$SessionId = @(),
# Credentials for connecting to the Nessus Server
[Parameter(Mandatory=$true,
Position=1)]
[Management.Automation.PSCredential]
$Credential,
[Parameter(Mandatory=$true,
Position=2)]
[ValidateSet('Read-Only', 'Regular', 'Administrator', 'Sysadmin')]
[string]
$Permission,
[Parameter(Mandatory=$false,
ValueFromPipelineByPropertyName=$true)]
[ValidateSet('Local', 'LDAP')]
[string]
$Type = 'Local',
[Parameter(Mandatory=$false,
ValueFromPipelineByPropertyName=$true)]
[string]
$Email,
[Parameter(Mandatory=$false,
ValueFromPipelineByPropertyName=$true)]
[string]
$Name
)
Begin
{
$ToProcess = @()
foreach($i in $SessionId)
{
$Connections = $Global:NessusConn
foreach($Connection in $Connections)
{
if ($Connection.SessionId -eq $i)
{
$ToProcess += $Connection
}
}
}
}
Process
{
foreach($Connection in $ToProcess)
{
$NewUserParams = @{}
$NewUserParams.Add('type',$Type.ToLower())
$NewUserParams.Add('permissions', $PermissionsName2Id[$Permission])
$NewUserParams.Add('username', $Credential.GetNetworkCredential().UserName)
$NewUserParams.Add('password', $Credential.GetNetworkCredential().Password)
if ($Email.Length -gt 0)
{
$NewUserParams.Add('email', $Email)
}
if ($Name.Length -gt 0)
{
$NewUserParams.Add('name', $Name)
}
$NewUser = InvokeNessusRestRequest -SessionObject $Connection -Path '/users' -Method 'Post' -Parameter $NewUserParams
if ($NewUser)
{
$NewUser
}
}
}
End{}
}
<#
.Synopsis
Short description
.DESCRIPTION
Long description
.EXAMPLE
Example of how to use this cmdlet
.EXAMPLE
Another example of how to use this cmdlet
#>
function Remove-NessusUser
{
[CmdletBinding()]
Param
(
# Nessus session Id
[Parameter(Mandatory=$true,
Position=0,
ValueFromPipelineByPropertyName=$true)]
[Alias('Index')]
[int32[]]
$SessionId = @(),
# Nessus User Id
[Parameter(Mandatory=$true,
Position=1,
ValueFromPipelineByPropertyName=$true)]
[int32[]]
$UserId
)
Begin
{
$ToProcess = @()
foreach($i in $SessionId)
{
$Connections = $Global:NessusConn
foreach($Connection in $Connections)
{
if ($Connection.SessionId -eq $i)
{
$ToProcess += $Connection
}
}
}
}
Process
{
foreach($Connection in $ToProcess)
{
foreach($uid in $UserId)
{
Write-Verbose -Message "Deleting user with Id $($uid)"
InvokeNessusRestRequest -SessionObject $Connection -Path "/users/$($uid)" -Method 'Delete'
}
}
}
End
{
}
}
<#
.Synopsis
Short description
.DESCRIPTION
Long description
.EXAMPLE
Example of how to use this cmdlet
.EXAMPLE
Another example of how to use this cmdlet
#>
function Set-NessusUserPassword
{
[CmdletBinding()]
Param
(
# Nessus session Id
[Parameter(Mandatory=$true,
Position=0,
ValueFromPipelineByPropertyName=$true)]
[Alias('Index')]
[int32[]]
$SessionId = @(),
# Nessus User Id
[Parameter(Mandatory=$true,
Position=1,
ValueFromPipelineByPropertyName=$true)]
[int32[]]
$UserId,
[Parameter(Mandatory=$true,
Position=3,
ValueFromPipelineByPropertyName=$true)]
[securestring]
$Password
)
Begin
{
$ToProcess = @()
foreach($i in $SessionId)
{
$Connections = $Global:NessusConn
foreach($Connection in $Connections)
{
if ($Connection.SessionId -eq $i)
{
$ToProcess += $Connection
}
}
}
}
Process
{
foreach($Connection in $ToProcess)
{
foreach($uid in $UserId)
{
Write-Verbose -Message "Updating user with Id $($uid)"
$pass = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($Password))
$params = @{'password' = $pass}
$paramJson = ConvertTo-Json -InputObject $params -Compress
InvokeNessusRestRequest -SessionObject $Connection -Path "/users/$($uid)/chpasswd" -Method 'PUT' -Parameter $paramJson -ContentType 'application/json'
}
}
}
End
{
}
}
#endregion