mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 05:37:38 +03:00
Add a new "firefox" plugin to work around Firefox evil plan
This commit is contained in:
parent
77f2eef886
commit
207d3172a7
2 changed files with 59 additions and 0 deletions
56
dnscrypt-proxy/plugin_firefox.go
Normal file
56
dnscrypt-proxy/plugin_firefox.go
Normal file
|
@ -0,0 +1,56 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/jedisct1/dlog"
|
||||
"github.com/miekg/dns"
|
||||
)
|
||||
|
||||
type PluginFirefox struct {
|
||||
}
|
||||
|
||||
func (plugin *PluginFirefox) Name() string {
|
||||
return "firefox"
|
||||
}
|
||||
|
||||
func (plugin *PluginFirefox) Description() string {
|
||||
return "Work around Firefox taking over DNS"
|
||||
}
|
||||
|
||||
func (plugin *PluginFirefox) Init(proxy *Proxy) error {
|
||||
dlog.Noticef("Firefox workaround initialized")
|
||||
return nil
|
||||
}
|
||||
|
||||
func (plugin *PluginFirefox) Drop() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (plugin *PluginFirefox) Reload() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (plugin *PluginFirefox) Eval(pluginsState *PluginsState, msg *dns.Msg) error {
|
||||
questions := msg.Question
|
||||
if len(questions) != 1 {
|
||||
return nil
|
||||
}
|
||||
question := questions[0]
|
||||
if question.Qclass != dns.ClassINET || (question.Qtype != dns.TypeA && question.Qtype != dns.TypeAAAA) {
|
||||
return nil
|
||||
}
|
||||
qName := strings.ToLower(question.Name)
|
||||
if qName != "use-application-dns.net." && !strings.HasSuffix(qName, ".use-application-dns.net.") {
|
||||
return nil
|
||||
}
|
||||
synth, err := EmptyResponseFromMessage(msg)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
synth.Rcode = dns.RcodeNameError
|
||||
pluginsState.synthResponse = synth
|
||||
pluginsState.action = PluginsActionSynth
|
||||
pluginsState.returnCode = PluginsReturnCodeSynth
|
||||
return nil
|
||||
}
|
|
@ -86,6 +86,9 @@ func InitPluginsGlobals(pluginsGlobals *PluginsGlobals, proxy *Proxy) error {
|
|||
if len(proxy.whitelistNameFile) != 0 {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginWhitelistName)))
|
||||
}
|
||||
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginFirefox)))
|
||||
|
||||
if len(proxy.blockNameFile) != 0 {
|
||||
*queryPlugins = append(*queryPlugins, Plugin(new(PluginBlockName)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue