Repo github.com/Snawoot/hola-proxy depends on github.com/AdguardTeam/dnsproxy@v0.46.1. https://github.com/Snawoot/hola-proxy/blob/master/go.mod#L6
However, comparing version v0.46.1 of github.com/AdguardTeam/dnsproxy from proxy.golang.org and github, there are inconsistencies.
So the checksum from the code in github does not match the checksum saved in sum.golang.org. The v0.46.1 tag of github.com/AdguardTeam/dnsproxy might have been retagged after a minor edition on github. I guess you use proxy.golang.org to get dependencies, but that also shows that your project is depending on the copy of github.com/AdguardTeam/dnsproxy@v0.46.1 before its edition. Depending upon such inconsistent tag version may also result in some unexpected errors as well as build errors due to different proxy settings.
For example, when someone who does not use proxy.golang.org, say GOPROXY=direct, attempts to get github.com/AdguardTeam/dnsproxy@v0.46.1, the following error occurs.
SECURITY ERROR
This download does NOT match the one reported by the checksum server.
The bits may have been replaced on the origin server, or an attacker may
have intercepted the download attempt.
For more information, see 'go help module-auth'.
So, this is a reminder in the hope that you can get rid of this problematic version of project `github.com/AdguardTeam/dnsproxy`.
## Solution
### 1. Bump the version of dependency `github.com/AdguardTeam/dnsproxy`
I would recommend bumping the version of `github.com/AdguardTeam/dnsproxy` to a new release to ensure dependency copy in proxy.golang.org and github in sync.
## References
+ <https://proxy.golang.org/>
Background
Repo
github.com/Snawoot/hola-proxy
depends ongithub.com/AdguardTeam/dnsproxy@v0.46.1
.https://github.com/Snawoot/hola-proxy/blob/master/go.mod#L6
However, comparing version
v0.46.1
ofgithub.com/AdguardTeam/dnsproxy
from proxy.golang.org and github, there are inconsistencies.SECURITY ERROR This download does NOT match the one reported by the checksum server. The bits may have been replaced on the origin server, or an attacker may have intercepted the download attempt.
For more information, see 'go help module-auth'.