AdGuardHome/internal/filtering
Ainar Garipov 5efcfda937 rulelist: imp docs, tests 2024-11-01 15:54:18 +03:00
..
hashprefix Pull request 2269: ADG-8932 Upd all 2024-08-20 18:38:04 +03:00
rewrite
rulelist rulelist: imp docs, tests 2024-11-01 15:54:18 +03:00
safesearch Pull request 2286: AGDNS-2374-slog-safesearch 2024-10-09 16:31:03 +03:00
tests
README.md
blocked.go
dnsrewrite.go
dnsrewrite_test.go
filter.go Pull request 2284: AG-32257-file-permission-mitigation 2024-10-02 21:00:15 +03:00
filter_test.go all: add filtering storage; upd golibs 2024-11-01 14:38:54 +03:00
filtering.go Pull request 2294: AGDNS-2455 Windows permissions 2024-10-29 14:28:59 +03:00
filtering_test.go
hosts.go
hosts_test.go
http.go all: add filtering storage; upd golibs 2024-11-01 14:38:54 +03:00
http_test.go
idgenerator.go
idgenerator_internal_test.go
path.go Pull request 2284: AG-32257-file-permission-mitigation 2024-10-02 21:00:15 +03:00
path_unix_internal_test.go Pull request 2284: AG-32257-file-permission-mitigation 2024-10-02 21:00:15 +03:00
path_windows_internal_test.go Pull request 2284: AG-32257-file-permission-mitigation 2024-10-02 21:00:15 +03:00
rewritehttp.go
rewritehttp_test.go
rewrites.go
rewrites_test.go
safesearch.go Pull request 2286: AGDNS-2374-slog-safesearch 2024-10-09 16:31:03 +03:00
safesearchhttp.go Pull request 2286: AGDNS-2374-slog-safesearch 2024-10-09 16:31:03 +03:00
servicelist.go Pull request 2295: upd-all 2024-10-29 14:49:25 +03:00

README.md

AdGuard Home's DNS filtering go library

Example use:

[ -z "$GOPATH" ] && export GOPATH=$HOME/go
go get -d github.com/AdguardTeam/AdGuardHome/filtering

Create file filter.go

package main

import (
    "github.com/AdguardTeam/AdGuardHome/filtering"
    "log"
)

func main() {
    filter := filtering.New()
    filter.AddRule("||dou*ck.net^")
    host := "www.doubleclick.net"
    res, err := filter.CheckHost(host)
    if err != nil {
        // temporary failure
        log.Fatalf("Failed to check host %q: %s", host, err)
    }
    if res.IsFiltered {
        log.Printf("Host %s is filtered, reason - %q, matched rule: %q", host, res.Reason, res.Rule)
    } else {
        log.Printf("Host %s is not filtered, reason - %q", host, res.Reason)
    }
}

And then run it:

go run filter.go

You will get:

2000/01/01 00:00:00 Host www.doubleclick.net is filtered, reason - 'FilteredBlackList', matched rule: '||dou*ck.net^'

You can also enable checking against AdGuard's SafeBrowsing:

package main

import (
    "github.com/AdguardTeam/AdGuardHome/filtering"
    "log"
)

func main() {
    filter := filtering.New()
    filter.EnableSafeBrowsing()
    host := "wmconvirus.narod.ru" // hostname for testing safebrowsing
    res, err := filter.CheckHost(host)
    if err != nil {
        // temporary failure
        log.Fatalf("Failed to check host %q: %s", host, err)
    }
    if res.IsFiltered {
        log.Printf("Host %s is filtered, reason - %q, matched rule: %q", host, res.Reason, res.Rule)
    } else {
        log.Printf("Host %s is not filtered, reason - %q", host, res.Reason)
    }
}