├── .gitattributes ├── .github └── workflows │ └── lint.yml ├── .gitignore ├── LICENSE ├── POLICIES.md ├── README.md ├── backup.csv ├── lists └── ataumo.csv └── puppy.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.numbers 3 | backup.csv 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/LICENSE -------------------------------------------------------------------------------- /POLICIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/POLICIES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/README.md -------------------------------------------------------------------------------- /backup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/backup.csv -------------------------------------------------------------------------------- /lists/ataumo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/lists/ataumo.csv -------------------------------------------------------------------------------- /puppy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ataumo/macos_hardening/HEAD/puppy.sh --------------------------------------------------------------------------------