-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpivenforcement.py
250 lines (219 loc) · 10.7 KB
/
pivenforcement.py
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
#!/usr/bin/python
#Create an extension attribute
#Create a smart group based off of that extension attribute
#Scope policies or configuration profiles to that smart group.
#Now you have an easy way to toggle that setting on/off for a computer without digging through the JSS
import urllib2
import base64
import json
import sys
import ssl
import getpass
import os
import subprocess
#Delete keychain entry
def delete_keychain():
FNULL = open(os.devnull, 'w')
delete_keychain_command ="security delete-generic-password -s piv-enforce"
delete_keychain = subprocess.call(delete_keychain_command,stdout=FNULL, stderr=subprocess.STDOUT, shell=True)
if delete_keychain == 0:
print "Keychain entry deleted successfully"
else:
print "Keychain entry not found"
#Login function
def login():
#check if the keychain entry is there and use it if it is
keychaincheck_command = "security find-generic-password -s piv-enforce -w"
FNULL = open(os.devnull, 'w')
keychain_entry = subprocess.call(keychaincheck_command,stdout=FNULL, stderr=subprocess.STDOUT, shell=True)
if keychain_entry == 0:
usercommand = "security find-generic-password -s piv-enforce | grep \"acct\" | awk -F \"=\" '{print $2}' | tr -d '\"'"
jssuser = subprocess.check_output(usercommand,stderr=subprocess.STDOUT,shell=True)[:-1]
passcommand = "security find-generic-password -s piv-enforce -w"
jsspass = subprocess.check_output(passcommand,stderr=subprocess.STDOUT,shell=True)[:-1]
#otherwise use the prompt
else:
jssuser = raw_input("Enter Your JSS Account:")
jsspass = getpass.getpass("Password: ")
while True:
save_to_keychain = raw_input("Save to Keychain? (Y/N)")
if save_to_keychain.lower() == "y":
keychain_entry = "security add-generic-password -U -a " + jssuser + " -s piv-enforce -p '" + jsspass + "'"
keychain_entry_command = subprocess.call(keychain_entry,stdout=FNULL,stderr=subprocess.STDOUT,shell=True)
break
elif save_to_keychain.lower() == "n":
break
return {'user':jssuser, 'pass':jsspass}
#Function to build the Jamf Pro Classic API URL Request
def jssapi(arg, item):
#if enrolled, use the current jamf server or set the server below
#example jamfproserver = "https://YOURJAMFPROSERVER:8443/"
#if set to nothing, and it finds the jamf.plist then use the enrolled server
jamfproserver = "" #<---- If you want to hardcode the jamfpro url
pref_path = "/Library/Preferences/com.jamfsoftware.jamf.plist"
if os.path.exists(pref_path) is True and jamfproserver == "":
command = "defaults read " + pref_path + " jss_url"
jamfproserver = subprocess.check_output(command,stderr=subprocess.STDOUT,shell=True)[:-1]
elif os.path.exists(pref_path) is False and jamfproserver =="":
print "No JamfPro server set. Please set one."
quit()
if arg == "-u":
jamfproserver = jamfproserver + "JSSResource/users/name/" + item
return jamfproserver
elif arg == "-c":
jamfproserver = jamfproserver + "JSSResource/computers/name/" + item
return jamfproserver
#If you are enabling or disabling function
def PIVAction(url, action, credentials="MISSING"):
if credentials == "MISSING":
credentials = login()
#makes sure everything is the same case
action = action.lower()
action = action.capitalize()
#script is nice and fixes your mistake
if action == "Enable" or action == "Disable":
action = action + "d"
if action == "Enabled" or action == "Disabled":
###########################################################
#Extension Attribute ID and Name WILL need to be changed #
#Set EA_ID and EA_name #
###########################################################
EA_ID = "497" #<------Here, extension attribute ID!
EA_name = ".PIV Enforced" #<----Here, extension attribute name!
####################################
xmldata = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?><computer><extension_attributes><extension_attribute><id>" + EA_ID + "</id><name>" + EA_name + "</name><type>String</type><value>" + action + "</value></extension_attribute></extension_attributes></computer>"
try:
opener = urllib2.build_opener(urllib2.HTTPSHandler)
request = urllib2.Request(url, data=xmldata)
request.add_header('content-type', 'application/xml')
request.add_header('Authorization', 'Basic ' + base64.b64encode(credentials['user'] + ':' + credentials['pass']))
request.get_method = lambda: 'PUT'
response = opener.open(request)
if response.getcode() != "200":
computer = url.split("/", 6)
print "PIV Enforcement has been " + action + " for computer " + computer[6]
else:
print "Something went wrong"
except urllib2.URLError, error:
#ERROR Checking, returns HTTP Error Codes
print "Something went wrong.\n", error
return error.code
else:
print action + " is not an appropriate action."
#if you enter the user it will display the computers assigned to that user
def computerlist(requestURL, credentials="MISSING"):
if credentials == "MISSING":
credentials = login()
try:
request = urllib2.Request(requestURL)
request.add_header('Accept', 'application/json')
request.add_header('Authorization', 'Basic ' + base64.b64encode(credentials['user'] + ':' + credentials['pass']))
response = urllib2.urlopen(request)
if response.getcode() != "200":
response_data = json.loads(response.read())
print "-----------------------------------------------"
print "|\tFull Name: " + response_data['user']['full_name']
print "|\tEmail: " + response_data['user']['email_address']
print "|\tPhone Number: " + response_data['user']['phone_number']
print "-----------------------------------------------"
computers = response_data['user']['links']['computers']
for computer in computers:
print "|\tComputer: " + computer['name']
print "-----------------------------------------------"
return response.getcode()
except urllib2.URLError, error:
#ERROR Checking, returns HTTP Error Codes
print "Something went wrong.\n", error
return error.code
#Main Function
def main():
if len(sys.argv) > 1:
options = sys.argv[1]
if options == "-h":
print " -h \t\t\t\t\t List help"
print " -u [Username]\t\t\t List the computers assigned to the user"
print " -c [Computer] [enabled/disabled]\t Computer to enable/disable Forced PIV"
print " -d \t\t\t\t\t Delete keychain entry"
elif options == "-d":
delete_keychain()
elif options == "-u":
if len(sys.argv) > 2:
url = jssapi(options, sys.argv[2])
computerlist(url)
else:
print "----------------------------"
print "*** No username inputted ***"
print "----------------------------"
elif options == "-c":
if len(sys.argv) > 3:
PIVAction(jssapi(options, sys.argv[2]), sys.argv[3])
else:
print "------------------------------"
print "*** Missing item or action ***"
print "------------------------------"
else:
print "Command not found"
else:
#########################
#INTERACTIVE MODE BEGINS#
#########################
print "Interactive Mode!"
print "------------------------------------"
apilogin = "MISSING"
print ""
print " -h \t\t\t\t\t List help"
print " -u [Username]\t\t\t List the computers assigned to the user"
print " -c [Computer] [enabled/disabled]\t Computer to enable/disable Forced PIV"
print " -d \t\t\t\t\t Delete keychain entry"
print " quit\t\t\t\t\t Type \'quit\' to quit interactive mode"
while True:
user_input = raw_input("Please enter an option: ")
if user_input.strip().lower() == "quit" or user_input.strip().lower() == "q":
break
the_input = user_input.split(" ", 3)
the_input += [None] * (3 - len(the_input))
options, item, action = the_input
action = str(action)
if options == "-h":
print " -h \t\t\t\t\t List help"
print " -u [Username]\t\t\t List the computers assigned to the user"
print " -c [Computer] [enabled/disabled]\t Computer to enable/disable Forced PIV"
print " -d \t\t\t\t\t Delete keychain entry"
print " quit\t\t\t\t\t Type \'quit\' to quit interactive mode"
elif options == "-u":
if item == None:
print "----------------------------"
print "*** No username inputted ***"
print "----------------------------"
else:
if apilogin == "MISSING":
apilogin = login()
url = jssapi(options, item)
print url
Notsuccessful = str(computerlist(url, apilogin))
if Notsuccessful == "401":
apilogin = "MISSING"
elif options == "-d":
delete_keychain()
elif options == "-c":
if item == None:
print "--------------------"
print "*** Missing item ***"
print "--------------------"
else:
if action == "None":
print "----------------------"
print "*** Missing action ***"
print "----------------------"
else:
if apilogin == "MISSING":
apilogin = login()
Notsuccessful = str(PIVAction(jssapi(options, item), action, apilogin))
if Notsuccessful == "401":
apilogin = "MISSING"
else:
print "-------------------------"
print "*** Command not found ***"
print "-------------------------"
if __name__== "__main__":
main()