-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathLAPS Account Creation.sh
268 lines (229 loc) · 10 KB
/
LAPS Account Creation.sh
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
#!/bin/sh
####################################################################################################
#
# MIT License
#
# Copyright (c) 2016 University of Nebraska–Lincoln
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
####################################################################################################
#
# HISTORY
#
# Version: 1.2
#
# - 05/04/2016 Created by Phil Redfern
# - 05/06/2016 Updated by Phil Redfern, improved local logging and security update.
# - 05/16/2016 Updated by Phil Redfern, added logic for FileVault Encryption
#
# - This script will create a local Administrator account to be used with LAPS.
#
####################################################################################################
#
# DEFINE VARIABLES & READ IN PARAMETERS
#
####################################################################################################
# HARDCODED VALUES SET HERE
apiUser=""
apiPass=""
LAPSuser=""
LAPSuserDisplay=""
newPass=""
LAPSaccountEvent=""
LAPSaccountEventFVE=""
LAPSrunEvent=""
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 4 AND, IF SO, ASSIGN TO "apiUser"
if [ "$4" != "" ] && [ "$apiUser" == "" ];then
apiUser=$4
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 5 AND, IF SO, ASSIGN TO "apiPass"
if [ "$5" != "" ] && [ "$apiPass" == "" ];then
apiPass=$5
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 6 AND, IF SO, ASSIGN TO "LAPSuser"
if [ "$6" != "" ] && [ "$LAPSuser" == "" ];then
LAPSuser=$6
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 7 AND, IF SO, ASSIGN TO "LAPSuserDisplay"
if [ "$7" != "" ] && [ "$LAPSuserDisplay" == "" ];then
LAPSuserDisplay=$7
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 8 AND, IF SO, ASSIGN TO "newPass"
if [ "$8" != "" ] && [ "$newPass" == "" ];then
newPass=$8
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 9 AND, IF SO, ASSIGN TO "LAPSaccountEvent"
if [ "$9" != "" ] && [ "$LAPSaccountEvent" == "" ];then
LAPSaccountEvent=$9
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 10 AND, IF SO, ASSIGN TO "LAPSaccountEventFVE"
if [ "${10}" != "" ] && [ "$LAPSaccountEventFVE" == "" ];then
LAPSaccountEventFVE="${10}"
fi
# CHECK TO SEE IF A VALUE WAS PASSED IN PARAMETER 11 AND, IF SO, ASSIGN TO "LAPSrunEvent"
if [ "${11}" != "" ] && [ "$LAPSrunEvent" == "" ];then
LAPSrunEvent="${11}"
fi
apiURL="https://jss.unl.edu:8443"
LogLocation="/Library/Logs/Casper_LAPS.log"
####################################################################################################
#
# SCRIPT CONTENTS - DO NOT MODIFY BELOW THIS LINE
#
####################################################################################################
udid=$(/usr/sbin/system_profiler SPHardwareDataType | /usr/bin/awk '/Hardware UUID:/ { print $3 }')
xmlString="<?xml version=\"1.0\" encoding=\"UTF-8\"?><computer><extension_attributes><extension_attribute><name>LAPS</name><value>$newPass</value></extension_attribute></extension_attributes></computer>"
extAttName="\"LAPS\""
FVEstatus=$(fdesetup status | grep -w "FileVault is" | awk '{print $3}' | sed 's/[.]//g')
# Logging Function for reporting actions
ScriptLogging(){
DATE=`date +%Y-%m-%d\ %H:%M:%S`
LOG="$LogLocation"
echo "$DATE" " $1" >> $LOG
}
ScriptLogging "======== Starting LAPS Account Creation ========"
ScriptLogging "Checking parameters."
# Verify parameters are present
if [ "$apiUser" == "" ];then
ScriptLogging "Error: The parameter 'API Username' is blank. Please specify a user."
echo "Error: The parameter 'API Username' is blank. Please specify a user."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$apiPass" == "" ];then
ScriptLogging "Error: The parameter 'API Password' is blank. Please specify a password."
echo "Error: The parameter 'API Password' is blank. Please specify a password."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$LAPSuser" == "" ];then
ScriptLogging "Error: The parameter 'LAPS Account Shortname' is blank. Please specify a user to create."
echo "Error: The parameter 'LAPS Account Shortname' is blank. Please specify a user to create."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$LAPSuserDisplay" == "" ];then
ScriptLogging "Error: The parameter 'LAPS Account Displayname' is blank. Please specify a user to create."
echo "Error: The parameter 'LAPS Account Displayname' is blank. Please specify a user to create."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$newPass" == "" ];then
ScriptLogging "Error: The parameter 'LAPS Password Seed' is blank. Please specify a password to seed."
echo "Error: The parameter 'LAPS Password Seed' is blank. Please specify a password to seed."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$LAPSaccountEvent" == "" ];then
ScriptLogging "Error: The parameter 'LAPS Account Event' is blank. Please specify a Custom LAPS Account Event."
echo "Error: The parameter 'LAPS Account Event' is blank. Please specify a Custom LAPS Account Event."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$LAPSaccountEventFVE" == "" ];then
ScriptLogging "Error: The parameter 'LAPS Account Event FVE' is blank. Please specify a Custom LAPS Account Event."
echo "Error: The parameter 'LAPS Account Event FVE' is blank. Please specify a Custom FVE LAPS Account Event."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
if [ "$LAPSrunEvent" == "" ];then
ScriptLogging "Error: The parameter 'LAPS Run Event' is blank. Please specify a Custom LAPS Run Event."
echo "Error: The parameter 'LAPS Run Event' is blank. Please specify a Custom LAPS Run Event."
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
fi
# Verify resetUser is not a local user on the computer
checkUser=`dseditgroup -o checkmember -m $LAPSuser localaccounts | awk '{ print $1 }'`
if [[ "$checkUser" = "yes" ]];then
ScriptLogging "Error: $LAPSuser already exists as a local user on the Computer"
echo "Error: $LAPSuser already exists as a local user on the Computer"
ScriptLogging "======== Aborting LAPS Account Creation ========"
exit 1
else
ScriptLogging "$LAPSuser is not a local user on the Computer, proceeding..."
echo "$LAPSuser is not a local user on the Computer, proceeding..."
fi
ScriptLogging "Parameters Verified."
# Identify the location of the jamf binary for the jamf_binary variable.
CheckBinary (){
# Identify location of jamf binary.
jamf_binary=`/usr/bin/which jamf`
if [[ "$jamf_binary" == "" ]] && [[ -e "/usr/sbin/jamf" ]] && [[ ! -e "/usr/local/bin/jamf" ]]; then
jamf_binary="/usr/sbin/jamf"
elif [[ "$jamf_binary" == "" ]] && [[ ! -e "/usr/sbin/jamf" ]] && [[ -e "/usr/local/bin/jamf" ]]; then
jamf_binary="/usr/local/bin/jamf"
elif [[ "$jamf_binary" == "" ]] && [[ -e "/usr/sbin/jamf" ]] && [[ -e "/usr/local/bin/jamf" ]]; then
jamf_binary="/usr/local/bin/jamf"
fi
ScriptLogging "JAMF Binary is $jamf_binary"
}
# Create the User Account
CreateLAPSaccount (){
ScriptLogging "Creating LAPS Account..."
echo "Creating LAPS Account..."
if [ "$FVEstatus" == "Off" ];then
$jamf_binary policy -event $LAPSaccountEvent
ScriptLogging "LAPS Account Created..."
echo "LAPS Account Created..."
else
$jamf_binary policy -event $LAPSaccountEventFVE
ScriptLogging "LAPS Account Created with FVE..."
echo "LAPS Account Created with FVE..."
fi
}
# Update the LAPS Extention Attribute
UpdateAPI (){
ScriptLogging "Recording new password for $LAPSuser into LAPS."
/usr/bin/curl -s -f -u ${apiUser}:${apiPass} -X PUT -H "Content-Type: text/xml" -d "${xmlString}" "${apiURL}/JSSResource/computers/udid/$udid"
}
# Check to see if the account is authorized with FileVault 2
FVEcheck (){
userCheck=`fdesetup list | awk -v usrN="$LAPSuserDisplay" -F, 'index($0, usrN) {print $1}'`
if [ "${userCheck}" == "${LAPSuserDisplay}" ]; then
ScriptLogging "$LAPSuserDisplay is enabled for FileVault 2."
echo "$LAPSuserDisplay is enabled for FileVault 2."
else
ScriptLogging "Error: $LAPSuserDisplay is not enabled for FileVault 2."
echo "Error: $LAPSuserDispaly is not enabled for FileVault 2."
fi
}
# If FileVault Encryption is enabled, verify account.
FVEverify (){
ScriptLogging "Checking FileVault Status..."
echo "Checking FileVault Status..."
if [ "$FVEstatus" == "On" ];then
ScriptLogging "FileVault is enabled, checking $LAPSuserDisplay..."
echo "FileVault is enabled, checking $LAPSuserDisplay..."
FVEcheck
else
ScriptLogging "FileVault is not enabled."
echo "FileVault is not enabled."
fi
}
CheckBinary
UpdateAPI
CreateLAPSaccount
UpdateAPI
FVEverify
ScriptLogging "======== LAPS Account Creation Complete ========"
echo "LAPS Account Creation Finished."
# Run LAPS Password Randomization
$jamf_binary policy -event $LAPSrunEvent
exit 0