Skip to content

Instantly share code, notes, and snippets.

@brysontyrrell
Created May 3, 2016 21:17
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save brysontyrrell/7fe462ed9c1d2a58739920e7090a6c95 to your computer and use it in GitHub Desktop.
Save brysontyrrell/7fe462ed9c1d2a58739920e7090a6c95 to your computer and use it in GitHub Desktop.
import base64
import getpass
import sys
import xml.etree.ElementTree as Et
import urllib
import urllib2
reload(sys)
sys.setdefaultencoding('utf-8')
JSS_URL = 'https://your.jss.com'
JSS_USER = str(raw_input('Username: '))
JSS_PASS = getpass.getpass('Password: ')
AUTH = base64.b64encode(JSS_USER + ':' + JSS_PASS)
def get(path):
request = urllib2.Request(JSS_URL + urllib.quote(path))
request.add_header('Authorization', 'Basic ' + AUTH)
response = urllib2.urlopen(request)
return response.read()
print("Reading all JSS categories...")
response = get('/JSSResource/categories')
CATEGORIES = Et.fromstring(response)
print("Reading all policy IDs from list of categories...")
POLICIES = []
for category in CATEGORIES.findall('category'):
response = get('/JSSResource/policies/category/' + category.findtext('name'))
data = Et.fromstring(response)
POLICIES.extend([policy.findtext('id') for policy in data.findall('policy')])
POLICIES.sort()
ENABLED = []
DISABLED = []
print("Reading all policies (this may take several minutes)...\n")
for ID in POLICIES:
response = get('/JSSResource/policies/id/' + ID)
policy = Et.fromstring(response)
if policy.findtext('general/enabled') == 'true':
ENABLED.append(policy.findtext('general/name'))
else:
DISABLED.append(policy.findtext('general/name'))
ENABLED.sort()
DISABLED.sort()
print("ENABLED Policies:")
print(' \n'.join(ENABLED) + '\n')
print("DISABLED Policies:")
print(' \n'.join(DISABLED) + '\n')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment