-
-
Notifications
You must be signed in to change notification settings - Fork 280
Installing Building Ligolo‐ng
Nicolas Chatelain edited this page Aug 2, 2024
·
1 revision
Precompiled binaries (Windows/Linux/macOS) are available on the Release page.
Ligolo-ng is now included by default in Kali Linux. You can install it using apt install ligolo-ng
. However, I recommend using the latest precompiled version on this github repository.
Building ligolo-ng (Go >= 1.20 is required):
$ go build -o agent cmd/agent/main.go
$ go build -o proxy cmd/proxy/main.go
# Build for Windows
$ GOOS=windows go build -o agent.exe cmd/agent/main.go
$ GOOS=windows go build -o proxy.exe cmd/proxy/main.go