diff --git a/endpointmanager/pkg/chplendpointquerier/curemdwebscraper.go b/endpointmanager/pkg/chplendpointquerier/curemdwebscraper.go index f83b3e3b9..833959f8e 100644 --- a/endpointmanager/pkg/chplendpointquerier/curemdwebscraper.go +++ b/endpointmanager/pkg/chplendpointquerier/curemdwebscraper.go @@ -27,7 +27,7 @@ func CuremdWebscraper(CHPLURL string, fileToWriteTo string) { pTag.Find("a").Each(func(i int, link *goquery.Selection) { url, exists := link.Attr("href") url = strings.TrimSuffix(url, "/metadata") - if exists { + if exists && !strings.Contains(url, "sandbox") { entry.URL = url lanternEntryList = append(lanternEntryList, entry) }