View report
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: Managed App Schema Builder [42732] | |
Path: /private/var/folders/*/Managed App Schema Builder.app/Contents/MacOS/Managed App Schema Builder | |
Identifier: com.jamf.pse.ManagedAppSchemaBuilder | |
Version: 0.9.7 (3) | |
Code Type: X86-64 (Translated) | |
Parent Process: launchd [1] |
View run_under_rosetta.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
import sys | |
from Foundation import * # pylint: disable=E0611 # | |
import objc | |
from SystemConfiguration import SCDynamicStoreCopyConsoleUser | |
def is_arm64(): |
View aj.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default 16:10:50.274399-0600 lsd Non-fatal error enumerating at <private>, continuing: Error Domain=NSCocoaErrorDomain Code=260 "The file “PlugIns” couldn’t be opened because there is no such file." UserInfo={NSURL=PlugIns/ -- file:///Volumes/Apple%20Juice/Apple%20Juice.app/Contents/Library/LoginItems/LaunchAtLoginHelper.app/Contents/, NSFilePath=/Volumes/Apple Juice/Apple Juice.app/Contents/Library/LoginItems/LaunchAtLoginHelper.app/Contents/PlugIns, NSUnderlyingError=0x7f9005653f00 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}} | |
default 16:10:50.311729-0600 lsd SecTranslocateCreateSecureDirectoryForURL: created /private/var/folders/td/79t1d1ps2lbb41jwt_4g7bvh0000gn/T/AppTranslocation/20F6CC80-2AB2-45E5-805D-77D8A1099D1C/d/Apple Juice.app | |
default 16:10:50.458385-0600 Finder LAUNCHING:0x0-0x136136 Apple Juice foreground=0 bringForward=0 seed=814 userActivityCount=0 | |
default 16:10:50.472707-0600 kernel AMFI: '/private/var/folders/td/79t1d1ps2lbb41jwt_4g7bvh0000gn/T/AppTranslocation/20F6CC8 |
View passgen.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
''' | |
Generates password of random 4-letter word + 4-digit number | |
''' | |
from random import randint, \ | |
choice | |
import os | |
import argparse | |
import re |
View chrome.mobileconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PayloadIdentifier</key> | |
<string>org.example.profile.chrome</string> | |
<key>PayloadRemovalDisallowed</key> | |
<true/> | |
<key>PayloadScope</key> | |
<string>System</string> |
View Destiny Tables and Columns
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Table Name , Column | |
(u'Address', u'AddressID') | |
(u'Address', u'AddressType') | |
(u'Address', u'City') | |
(u'Address', u'Line1') | |
(u'Address', u'Line2') | |
(u'Address', u'OtherPhone') | |
(u'Address', u'PatronID') | |
(u'Address', u'PrimaryPhone') | |
(u'Address', u'State') |
View chrome_pfm_manifest_merger.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# # -*- coding: utf-8 -*- | |
import plistlib | |
import os | |
from subprocess import call | |
#import base64 | |
manifestpath = os.path.abspath('/Applications/Google Chrome.app/Contents/Resources/com.google.Chrome.manifest/Contents/Resources/com.google.Chrome.manifest') |
View encode.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
'''Provides utility functions for encoding and decoding linestrings using the | |
Google encoded polyline algorithm. | |
Original Script at https://gist.github.com/signed0/2031157 | |
''' | |
from sys import argv | |
from ast import literal_eval | |
def encode_coords(coords): | |
'''Encodes a polyline using Google's polyline algorithm |
View boxcarNotify.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
''' | |
Sends boxcar.io notifications, you need a token so sign up at boxcar.io! | |
''' | |
try: | |
import requests | |
except ImportError: | |
print 'Please install requests' | |
defaulticon = "https://github.com/munkireport/munkireport-php/raw/wip/assets/images/favicons/android-chrome-192x192.png" | |
def boxcarnotify(accesstoken, title, message, sound="success", |
NewerOlder