forked from pspete/psPAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdd-PASPolicyACL.ps1
181 lines (133 loc) · 3.68 KB
/
Add-PASPolicyACL.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
function Add-PASPolicyACL {
<#
.SYNOPSIS
Adds a new privileged command rule
.DESCRIPTION
Adds a new privileged command rule to a policy.
.PARAMETER Command
The Command to Add
.PARAMETER CommandGroup
Boolean to define if commandgroup
.PARAMETER PermissionType
Allow or Deny Permission
.PARAMETER PolicyId
String value of Policy ID
.PARAMETER Restrictions
A restrictions string
.PARAMETER UserName
The user this rule applies to.
Specify "*" for all users
.PARAMETER sessionToken
Hashtable containing the session token returned from New-PASSession
.PARAMETER WebSession
WebRequestSession object returned from New-PASSession
.PARAMETER BaseURI
PVWA Web Address
Do not include "/PasswordVault/"
.PARAMETER PVWAAppName
The name of the CyberArk PVWA Virtual Directory.
Defaults to PasswordVault
.PARAMETER ExternalVersion
The External CyberArk Version, returned automatically from the New-PASSession function from version 9.7 onwards.
.EXAMPLE
$token | Add-PASPolicyACL -Command "chmod" -CommandGroup $false -PermissionType Allow -PolicyId UNIXSSH -UserName user1
Adds Rule to UNIXSSH platform
.INPUTS
All parameters can be piped by property name
.OUTPUTS
Outputs Object of Custom Type psPAS.CyberArk.Vault.ACL
SessionToken, WebSession, BaseURI are passed through and
contained in output object for inclusion in subsequent
pipeline operations.
Output format is defined via psPAS.Format.ps1xml.
To force all output to be shown, pipe to Select-Object *
.NOTES
.LINK
#>
[CmdletBinding()]
param(
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[ValidateNotNullOrEmpty()]
[string]$Command,
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[boolean]$CommandGroup,
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[ValidateSet("Allow", "Deny")]
[string]$PermissionType,
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[ValidateNotNullOrEmpty()]
[string]$PolicyId,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true
)]
[ValidateNotNullOrEmpty()]
[string]$Restrictions,
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[ValidateNotNullOrEmpty()]
[string]$UserName,
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[ValidateNotNullOrEmpty()]
[hashtable]$sessionToken,
[parameter(
ValueFromPipelinebyPropertyName = $true
)]
[Microsoft.PowerShell.Commands.WebRequestSession]$WebSession,
[parameter(
Mandatory = $true,
ValueFromPipelinebyPropertyName = $true
)]
[string]$BaseURI,
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true
)]
[string]$PVWAAppName = "PasswordVault",
[parameter(
Mandatory = $false,
ValueFromPipelinebyPropertyName = $true
)]
[System.Version]$ExternalVersion = "0.0"
)
BEGIN {}#begin
PROCESS {
#Create URL for request
$URI = "$baseURI/$PVWAAppName/WebServices/PIMServices.svc/Policy/$($PolicyID |
Get-EscapedString)/PrivilegedCommands"
#Create request body
$body = $PSBoundParameters |
Get-PASParameter -ParametersToRemove PolicyId |
ConvertTo-Json
#Send request to web service
$result = Invoke-PASRestMethod -Uri $URI -Method PUT -Body $Body -Headers $sessionToken -WebSession $WebSession
if($result) {
$result.AddPolicyPrivilegedCommandResult |
Add-ObjectDetail -typename psPAS.CyberArk.Vault.ACL.Policy -PropertyToAdd @{
"sessionToken" = $sessionToken
"WebSession" = $WebSession
"BaseURI" = $BaseURI
"PVWAAppName" = $PVWAAppName
"ExternalVersion" = $ExternalVersion
}
}
}#process
END {}#end
}