Metadata-Version: 2.1
Name: buckle-up
Version: 0.0.2
Summary: Buckle-up: a toolbox for writing macOS sandbox profiles
Home-page: https://github.com/m4rkw/buckle-up
Author: Mark Wadham
Author-email: buckle-up@rkw.io
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# buckle-up by m4rkw

A python toolbox for writing macOS sandbox profiles.

## installation

````
pip3 install buckle-up
````

## monitor all sandbox events

````
bu -p all
````

## monitor sandbox events for specific processes

````
bu -p 'Slack,Slack Helper'
````

## write denied actions to a sandbox profile file

````
bu -p 'Slack,Slack Helper' -o slack.sb
````

## known issues

deny events are de-duped but written verbatim from the system log into the
output sandbox profile. this means that all file references are entered as
"literal" and other actions such as signals will not be in a valid format so
some manual tidying will be necessary.


