You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to install it on my kali linux (arm64). the issue I am getting is that when I used this command "curl https://sliver.sh/install | sudo bash". the installation failed in the end and when I checked the directory it says its x86 (of windows).
then I try to compile the binary so it matches my architecture.
this is the flow of my commands:
// enable modules and set a proxy (helps with connectivity)
export GO111MODULE=on
export GOPROXY=https://proxy.golang.org,direct
// build server + client for linux/arm64 (disable cgo for cross-compile)
export CGO_ENABLED=0
GOOS=linux GOARCH=arm64 go build -o /root/sliver-server ./server
GOOS=linux GOARCH=arm64 go build -o /root/sliver-client ./client
its completed successfully "GOOS=linux GOARCH=arm64 go build -o /root/sliver-server ./server"
but when I do this it gave me error now I have no clue what to do:
┌──(root㉿kali)-[~/sliver-src]
└─# GOOS=linux GOARCH=arm64 go build -o /root/sliver-server ./server
github.com/bishopfox/sliver/server/assets
server/assets/assets-helpers.go:154:20: undefined: assetsFs
server/assets/assets-helpers.go:170:21: undefined: assetsFs
server/assets/assets-helpers.go:210:16: undefined: assetsFs
server/assets/assets-helpers.go:225:19: undefined: assetsFs
server/assets/assets-helpers.go:244:21: undefined: assetsFs
server/assets/assets-helpers.go:262:17: undefined: assetsFs
server/assets/assets-helpers.go:711:16: undefined: assetsFs
server/assets/assets-helpers.go:717:21: undefined: assetsFs
server/assets/assets.go:147:21: undefined: assetsFs
server/assets/assets.go:157:23: undefined: assetsFs
server/assets/assets.go:157:23: too many errors
Can someone please help me how can I install it in my kali (arm64)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to install it on my kali linux (arm64). the issue I am getting is that when I used this command "curl https://sliver.sh/install | sudo bash". the installation failed in the end and when I checked the directory it says its x86 (of windows).
then I try to compile the binary so it matches my architecture.
this is the flow of my commands:
// enable modules and set a proxy (helps with connectivity)
export GO111MODULE=on
export GOPROXY=https://proxy.golang.org,direct
// generate embedded assets (this creates the missing assetsFs)
chmod +x ./go-assets.sh
./go-assets.sh
// build server + client for linux/arm64 (disable cgo for cross-compile)
export CGO_ENABLED=0
GOOS=linux GOARCH=arm64 go build -o /root/sliver-server ./server
GOOS=linux GOARCH=arm64 go build -o /root/sliver-client ./client
its completed successfully "GOOS=linux GOARCH=arm64 go build -o /root/sliver-server ./server"
but when I do this it gave me error now I have no clue what to do:
┌──(root㉿kali)-[~/sliver-src]
└─# GOOS=linux GOARCH=arm64 go build -o /root/sliver-server ./server
github.com/bishopfox/sliver/server/assets
server/assets/assets-helpers.go:154:20: undefined: assetsFs
server/assets/assets-helpers.go:170:21: undefined: assetsFs
server/assets/assets-helpers.go:210:16: undefined: assetsFs
server/assets/assets-helpers.go:225:19: undefined: assetsFs
server/assets/assets-helpers.go:244:21: undefined: assetsFs
server/assets/assets-helpers.go:262:17: undefined: assetsFs
server/assets/assets-helpers.go:711:16: undefined: assetsFs
server/assets/assets-helpers.go:717:21: undefined: assetsFs
server/assets/assets.go:147:21: undefined: assetsFs
server/assets/assets.go:157:23: undefined: assetsFs
server/assets/assets.go:157:23: too many errors
Can someone please help me how can I install it in my kali (arm64)
Beta Was this translation helpful? Give feedback.
All reactions