Hi there!
I am trying to install aquatone on my Parrot Os. In the module is the following commands:
@htb[/htb]$ sudo apt install golang chromium-driver
@htb[/htb]$ go get github.com/michenriksen/aquatone
@htb[/htb]$ export PATH="$PATH":"$HOME/go/bin"
When I try to execute the command go get github.com/...
I get the following error:
$ go get github.com/michenriksen/aquatone
go: go.mod file not found in current directory or any parent directory.
'go get' is no longer supported outside a module.
To build and install a command, use 'go install' with a version,
And then i’ve tried to execute it with:
$ go install github.com/michenriksen/aquatone@latest
But then i’ve got the error:
# github.com/michenriksen/aquatone/parsers
go/pkg/mod/github.com/michenriksen/aquatone@v1.7.0/parsers/regex.go:22:26: invalid operation: cannot call non-function xurls.Relaxed (variable of type *regexp.Refexp)
I’ve also tried this link: Install Aquatone on Kali Linux | Medium
But also that didn’t work out, because when I execute aquatone
the error is:
bash: /usr/bin/aquatone: cannot execute binary file: Exec format error
How can I install aquatone?