Files
2023-07-23 19:48:38 +02:00

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")
}