I noticed an update addressing the fingerprint error, so I ran the following command to get the latest version:
go install -v github.com/PentestPad/subzy@latest
However, I encountered this error:
go: github.com/PentestPad/subzy@latest (in github.com/PentestPad/[email protected]): go.mod:3: invalid go version '1.21.3': must match format 1.23
It seems I'm running Go version 1.23, but subzy only requires 1.21.3 as specified in its go.mod file:
module github.com/PentestPad/subzy
go 1.21.3
require (
What workarounds can I try?