mirror of
https://github.com/BishopFox/sliver
synced 2026-06-08 10:29:05 +00:00
13 lines
304 B
Go
13 lines
304 B
Go
package sessions
|
|
|
|
import (
|
|
"github.com/bishopfox/sliver/client/console"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// BackgroundCmd - Background the active session.
|
|
func BackgroundCmd(cmd *cobra.Command, con *console.SliverClient, args []string) {
|
|
con.ActiveTarget.Background()
|
|
con.PrintInfof("Background ...\n")
|
|
}
|