Skip to content

Commit

Permalink
0.7.0 Prevent out all IPV6 traffic
Browse files Browse the repository at this point in the history
  • Loading branch information
nbari committed Mar 9, 2019
1 parent 44f8002 commit b8e1117
Show file tree
Hide file tree
Showing 263 changed files with 44,438 additions and 12,413 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.7.0
* Prevent out all IPV6 traffic `block out quick inet6 all`

## 0.6.0
* New option `-local` allows local network traffic, thanks @kabouzeid
* Added the network mask when printing the current IP addresses
16 changes: 8 additions & 8 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

[[constraint]]
name = "github.com/miekg/dns"
version = "1.0.12"
version = "1.1.5"

[[constraint]]
branch = "master"
Expand Down
1 change: 1 addition & 0 deletions pf.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ func (n *Network) CreatePF(leak, local bool) {
n.PFRules.WriteString("set ruleset-optimization basic\n")
n.PFRules.WriteString("set skip on lo0\n")
n.PFRules.WriteString("block all\n")
n.PFRules.WriteString("block out quick inet6 all\n")
if leak {
n.PFRules.WriteString("pass quick proto {tcp, udp} from any to any port 53 keep state\n")
}
Expand Down
8 changes: 3 additions & 5 deletions vendor/github.com/miekg/dns/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 29 additions & 5 deletions vendor/github.com/miekg/dns/Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions vendor/github.com/miekg/dns/Gopkg.toml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 30 additions & 29 deletions vendor/github.com/miekg/dns/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 56 additions & 0 deletions vendor/github.com/miekg/dns/acceptfunc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b8e1117

Please sign in to comment.