Skip to content

Commit 8361bf0

Browse files
Change baseURL of wappalyzer to webappanalyzer
1 parent f7c91f1 commit 8361bf0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

webscans/wappalyzer.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@ func (wp *Wappalyzer) downloadJSON(url, filePath string) ([]byte, error) {
8686
}
8787

8888
func (wp *Wappalyzer) ScanWebsites(domains []string) ([]WebsiteDetails, error) {
89-
baseURL := "https://raw.githubusercontent.com/wappalyzer/wappalyzer/master/src/technologies/"
90-
skipDownload := true // Wappalyzer doesn't open their github projects now
89+
// baseURL := "https://raw.githubusercontent.com/wappalyzer/wappalyzer/master/src/technologies/" # wappalyzer went private in August 2023
90+
baseURL := "https://raw.githubusercontent.com/enthec/webappanalyzer/main/src/technologies/"
91+
skipDownload := false
9192

9293
// Map to store the technologies
9394
technologies := make(map[string]Technology)
@@ -115,6 +116,7 @@ func (wp *Wappalyzer) ScanWebsites(domains []string) ([]WebsiteDetails, error) {
115116
helper.ErrorPrintf("[!] Error reading embedded file:", err)
116117
return nil, err
117118
}
119+
skipDownload = true
118120
}
119121
} else {
120122
data, err = defaults.EmbeddedWappalyzerFiles.ReadFile("wappalyzer/" + fileName)

0 commit comments

Comments
 (0)