Skip to content

Commit

Permalink
add config: disable app firewall for current user
Browse files Browse the repository at this point in the history
This partially satisfies the bug referenced in issue #35.
  • Loading branch information
kristovatlas committed May 30, 2016
1 parent 2d2f19e commit 827dd64
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion osx-config.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,26 @@
description: "Current user is a non-admin account. (Create a new account if this fails!)"
},
{
//Note: This seems to get overwritten logging out/in. See following, user-specific version.
type: "exact match"
confidence: "required"
command: "defaults -currentHost read /Library/Preferences/com.apple.alf globalstate"
expected_stdout: "1"
fix: "defaults -currentHost write /Library/Preferences/com.apple.alf globalstate -bool true"
sudo_fix: "sudo defaults -currentHost write /Library/Preferences/com.apple.alf globalstate -bool true"
case_sensitive: "false"
description: "The OSX application firewall is enabled."
description: "The OSX application firewall is enabled (system-wide)."
reference: "https://github.com/drduh/OS-X-Security-and-Privacy-Guide"
},
{
type: "exact match"
confidence: "required"
command: "defaults -currentHost read ~/Library/Preferences/com.apple.alf globalstate"
expected_stdout: "1"
fix: "defaults -currentHost write ~/Library/Preferences/com.apple.alf globalstate -bool true"
sudo_fix: "sudo defaults -currentHost write ~/Library/Preferences/com.apple.alf globalstate -bool true"
case_sensitive: "false"
description: "The OSX application firewall is enabled (current user only)."
reference: "https://github.com/drduh/OS-X-Security-and-Privacy-Guide"
},
{
Expand Down
Loading

0 comments on commit 827dd64

Please sign in to comment.