diff --git a/cmd/bind/cleanup.go b/cmd/bind/cleanup.go index e3645d4..fbeedff 100644 --- a/cmd/bind/cleanup.go +++ b/cmd/bind/cleanup.go @@ -27,7 +27,7 @@ func cleanBadDomains(domains []string) []string { total = len(domains) list = []string{} for _, blocklistItem := range domains { - if len([]rune(blocklistItem)) > 255 { + if len([]rune(blocklistItem)) > 250 { continue } list = append(list, blocklistItem) @@ -37,26 +37,20 @@ func cleanBadDomains(domains []string) []string { // remove allow-listed matches total = len(domains) - list = []string{} - for _, blocklistItem := range domains { - var match bool - for _, allowlistItem := range config.Config.AllowLists { - r, err := regexp.Compile(allowlistItem) + for _, allowedItem := range config.Config.AllowLists { + for k, v := range domains { + r, err := regexp.Compile(allowedItem) if err != nil { - log.Printf("[ERROR] Allow list item (%s) is not valid regex: %v\n", allowlistItem, err) + log.Printf("[ERROR] Allow list item (%s) is not valid regex: %v\n", allowedItem, err) break } - if r.MatchString(blocklistItem) { - match = true + if r.MatchString(v) { + domains = removeStringFromSlice(domains, k) break } } - if !match { - list = append(list, blocklistItem) - } } - domains = list log.Printf("[INFO] Allowed hosts removed: %d\n", total-len(domains)) log.Printf("[INFO] Total domains in list at end: %d.\n", len(domains)) diff --git a/cmd/bind/init.go b/cmd/bind/init.go index c71ee96..03bad98 100644 --- a/cmd/bind/init.go +++ b/cmd/bind/init.go @@ -160,7 +160,7 @@ func initialize() { log.Printf("[DEBUG] configuration value set: EXPIRE = %v\n", config.Config.ZoneConfig.Expire) log.Printf("[DEBUG] configuration value set: MINIMUM = %v\n", config.Config.ZoneConfig.Minimum) log.Printf("[DEBUG] configuration value set: NS1 = %v\n", ns1) - log.Printf("[DEBUG] configuration value set: NS1 = %v\n", ns2) + log.Printf("[DEBUG] configuration value set: NS2 = %v\n", ns2) log.Printf("[DEBUG] configuration value set: CONFIG_FILE = %v\n", config.ConfigFileLocation) // read config file diff --git a/cmd/bind/supporting-functions.go b/cmd/bind/supporting-functions.go index 632e4a2..23e6e16 100644 --- a/cmd/bind/supporting-functions.go +++ b/cmd/bind/supporting-functions.go @@ -9,3 +9,8 @@ func timeTrack(start time.Time, name string) { elapsed := time.Since(start) log.Printf("[TRACE] Function %s took %s\n", name, elapsed) } + +func removeStringFromSlice(s []string, i int) []string { + s[i] = s[len(s)-1] + return s[:len(s)-1] +}