├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── audit ├── auditDarwin.go ├── auditLinux.go ├── auditRulesLinux.go ├── audit_darwin.h └── audit_darwin.m ├── dispatcher ├── dispatcher.go └── utils.go ├── entitlements.xml ├── main.go └── transformer ├── esTypesDarwin.go ├── transformerDarwin.go └── transformerLinux.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /build/ 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # providence 2 | Kernel based security for Mac, BSD and Linux 3 | -------------------------------------------------------------------------------- /audit/auditDarwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/audit/auditDarwin.go -------------------------------------------------------------------------------- /audit/auditLinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/audit/auditLinux.go -------------------------------------------------------------------------------- /audit/auditRulesLinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/audit/auditRulesLinux.go -------------------------------------------------------------------------------- /audit/audit_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/audit/audit_darwin.h -------------------------------------------------------------------------------- /audit/audit_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/audit/audit_darwin.m -------------------------------------------------------------------------------- /dispatcher/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/dispatcher/dispatcher.go -------------------------------------------------------------------------------- /dispatcher/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/dispatcher/utils.go -------------------------------------------------------------------------------- /entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/entitlements.xml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/main.go -------------------------------------------------------------------------------- /transformer/esTypesDarwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/transformer/esTypesDarwin.go -------------------------------------------------------------------------------- /transformer/transformerDarwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/transformer/transformerDarwin.go -------------------------------------------------------------------------------- /transformer/transformerLinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livingstonetech/providence/HEAD/transformer/transformerLinux.go --------------------------------------------------------------------------------