d3mondev / puredns

Puredns is a fast domain resolver and subdomain bruteforcing tool that can accurately filter out wildcard subdomains and DNS poisoned entries.
GNU General Public License v3.0
1.61k stars 151 forks source link

Go get issue in 1.17 #25

Closed d1pakda5 closed 2 years ago

d1pakda5 commented 2 years ago

Since go get is deprecated using go install throwing this error how to resolve this

go install github.com/d3mondev/puredns@latest

go install: github.com/d3mondev/puredns@latest: module github.com/d3mondev/puredns@latest found (v1.0.3), but does not contain package github.com/d3mondev/puredns

d3mondev commented 2 years ago

The correct command to install puredns with go 1.18 is:

go install github.com/d3mondev/puredns/v2@latest

Thanks for bringing it to my attention, I'll update the docs :)