Skip to content

Instantly share code, notes, and snippets.

View inC3ASE's full-sized avatar

Gabriel Sawyer inC3ASE

  • Aptos, California
View GitHub Profile
@inC3ASE
inC3ASE / PlatformSupport.plist
Created October 14, 2016 01:43
../CoreServices/
<?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>SupportedBoardIds</key>
<array>
<string>Mac-F2268DC8</string>
<string>Mac-50619A408DB004DA</string>
<string>Mac-F42D86A9</string>
<string>Mac-742912EFDBEE19B3</string>
@inC3ASE
inC3ASE / rootless.conf
Created October 14, 2016 01:44
../System/Library/Sandbox
/Applications/App Store.app
/Applications/Automator.app
/Applications/Calculator.app
/Applications/Calendar.app
/Applications/Chess.app
/Applications/Contacts.app
/Applications/Dashboard.app
/Applications/Dictionary.app
/Applications/DVD Player.app
/Applications/FaceTime.app
@inC3ASE
inC3ASE / bsd.sb
Created October 14, 2016 01:44
Sandbox/Profiles/
;; OriginatingProject: files
;;
;; common rules for various BSD daemons
;; Copyright (c) 2007-2011 Apple Inc. All Rights reserved.
;;
;; WARNING: The sandbox rules in this file currently constitute
;; Apple System Private Interface and are subject to change at any time and
;; without notice. The contents of this file are also auto-generated and not
;; user editable; it may be overwritten at any time.
;;
@inC3ASE
inC3ASE / racoon.sb
Created October 14, 2016 01:45
Sandbox/Profiles
;; OriginatingProject: ipsec
(version 1)
(deny default)
(import "system.sb")
(allow system-socket sysctl-read sysctl-write)
(allow system-info (info-type "net.link.addr"))
@inC3ASE
inC3ASE / org.openssh.sshd.sb
Created October 14, 2016 01:46
../Profiles
;; Copyright (c) 2008 Apple Inc. All Rights reserved.
;;
;; sshd - profile for privilege separated children
;;
;; WARNING: The sandbox rules in this file currently constitute
;; Apple System Private Interface and are subject to change at any time and
;; without notice.
;;
(version 1)
(version 1)
(deny default)
(import "system.sb")
(import "opendirectory.sb")
(allow file-read* file-write*
(extension "com.apple.systempreferences.write-only"))
(allow file-read*
@inC3ASE
inC3ASE / navd-OSX.sb
Created October 14, 2016 01:47
../Profiles
(version 1)
(import "system.sb")
(deny default)
(define (home-regex home-relative-regex)
(regex (string-append "^" (regex-quote (param "_HOME")) home-relative-regex)))
(define (home-subpath home-relative-subpath)
(subpath (string-append (param "_HOME") home-relative-subpath)))
(define (home-literal home-relative-literal)
(literal (string-append (param "_HOME") home-relative-literal)))
(version 1)
(deny default)
(import "system.sb")(system-graphics)
(import "com.apple.corefoundation.sb")
(corefoundation)
(allow file-read-metadata)
(allow file-issue-extension
@inC3ASE
inC3ASE / PACSupport.js
Created October 14, 2016 01:49
CFNetowork.framework
/*
File: PACSuppport.js
Contains: PAC Support functions
Copyright: Copyright (c) 2003-2004 Apple Inc. All rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
@inC3ASE
inC3ASE / CFNetworkCoreTypes-Info.plist
Created October 14, 2016 01:50
CFNetwork.framework/Versions/A/Resources
<?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>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>CFNetwork Core Types</string>
<key>CFBundleIdentifier</key>
<string>com.apple.cfnetwork.coretypes</string>