Skip to content

Commit b8e1117

Browse files
committed
0.7.0 Prevent out all IPV6 traffic
1 parent 44f8002 commit b8e1117

File tree

263 files changed

+44438
-12413
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

263 files changed

+44438
-12413
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.7.0
2+
* Prevent out all IPV6 traffic `block out quick inet6 all`
3+
14
## 0.6.0
25
* New option `-local` allows local network traffic, thanks @kabouzeid
36
* Added the network mask when printing the current IP addresses

Gopkg.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
[[constraint]]
2929
name = "github.com/miekg/dns"
30-
version = "1.0.12"
30+
version = "1.1.5"
3131

3232
[[constraint]]
3333
branch = "master"

pf.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ func (n *Network) CreatePF(leak, local bool) {
3838
n.PFRules.WriteString("set ruleset-optimization basic\n")
3939
n.PFRules.WriteString("set skip on lo0\n")
4040
n.PFRules.WriteString("block all\n")
41+
n.PFRules.WriteString("block out quick inet6 all\n")
4142
if leak {
4243
n.PFRules.WriteString("pass quick proto {tcp, udp} from any to any port 53 keep state\n")
4344
}

vendor/github.com/miekg/dns/.travis.yml

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/miekg/dns/Gopkg.lock

Lines changed: 29 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/miekg/dns/Gopkg.toml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/miekg/dns/README.md

Lines changed: 30 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/miekg/dns/acceptfunc.go

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)