Merge pull request #56 from shichao-an/master

Added Application Firewall socketfilterfw
This commit is contained in:
Marcel Bischoff 2015-10-27 02:38:32 +01:00
commit 9b5a070296

View File

@ -55,6 +55,7 @@ If you want to contribute, you are highly encouraged to do so. Please read the [
- [Package Managers](#package-managers) - [Package Managers](#package-managers)
- [Printing](#printing) - [Printing](#printing)
- [Security](#security) - [Security](#security)
- [Application Firewall](#application-firewall)
- [Gatekeeper](#gatekeeper) - [Gatekeeper](#gatekeeper)
- [Passwords](#passwords) - [Passwords](#passwords)
- [Physical Access](#physical-access) - [Physical Access](#physical-access)
@ -809,6 +810,28 @@ defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true
## Security ## Security
### Application Firewall
#### Show Firewall Status
```bash
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate
```
#### Turn on Firewall
```bash
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate on
```
#### Turn off Firewall
```bash
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off
```
#### Add Application to Firewall
```bash
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --add /path/to/file
```
### Gatekeeper ### Gatekeeper
#### Add Gatekeeper Exception #### Add Gatekeeper Exception