mirror of
https://github.com/BishopFox/sliver
synced 2026-06-08 10:29:05 +00:00
94 lines
2.9 KiB
Go
94 lines
2.9 KiB
Go
package cli
|
|
|
|
/*
|
|
Sliver Implant Framework
|
|
Copyright (C) 2019 Bishop Fox
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/bishopfox/sliver/client/assets"
|
|
"github.com/bishopfox/sliver/client/command"
|
|
"github.com/bishopfox/sliver/client/console"
|
|
"github.com/bishopfox/sliver/client/transport"
|
|
"github.com/bishopfox/sliver/protobuf/rpcpb"
|
|
"github.com/spf13/cobra"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// consoleCmd generates the console with required pre/post runners.
|
|
func consoleCmd(con *console.SliverClient) *cobra.Command {
|
|
consoleCmd := &cobra.Command{
|
|
Use: "console",
|
|
Short: "Start the sliver client console",
|
|
}
|
|
|
|
consoleCmd.Flags().String(RCFlagName, "", "path to rc script file")
|
|
consoleCmd.RunE, consoleCmd.PersistentPostRunE = consoleRunnerCmd(con, true)
|
|
return consoleCmd
|
|
}
|
|
|
|
func consoleRunnerCmd(con *console.SliverClient, run bool) (pre, post func(cmd *cobra.Command, args []string) error) {
|
|
pre = func(cmd *cobra.Command, _ []string) error {
|
|
if err := applyMultiplayerConnectMode(cmd); err != nil {
|
|
return err
|
|
}
|
|
|
|
configs := assets.GetConfigs()
|
|
if len(configs) == 0 {
|
|
fmt.Printf("No config files found at %s (see --help)\n", assets.GetConfigDir())
|
|
return nil
|
|
}
|
|
configKey, config := selectConfig()
|
|
if config == nil {
|
|
return nil
|
|
}
|
|
|
|
rcScript, err := ReadRCScript(cmd)
|
|
if err != nil {
|
|
fmt.Printf("Failed to read rc script: %s\n", err)
|
|
return nil
|
|
}
|
|
|
|
target := fmt.Sprintf("%s:%d", config.LHost, config.LPort)
|
|
var rpc rpcpb.SliverRPCClient
|
|
var ln *grpc.ClientConn
|
|
|
|
// Don't clobber output when simply running an implant command from system shell.
|
|
if run {
|
|
rpc, ln, err = connectWithSpinner(os.Stdout, target, func(statusFn transport.ConnectStatusFn) (rpcpb.SliverRPCClient, *grpc.ClientConn, error) {
|
|
return transport.MTLSConnectWithStatus(config, statusFn)
|
|
})
|
|
} else {
|
|
rpc, ln, err = transport.MTLSConnect(config)
|
|
}
|
|
if err != nil {
|
|
fmt.Printf("Connection to server failed %s\n", err)
|
|
return nil
|
|
}
|
|
return console.StartClient(con, rpc, ln, &console.ConnectionDetails{ConfigKey: configKey, Config: config}, command.ServerCommands(con, nil), command.SliverCommands(con), run, rcScript)
|
|
}
|
|
|
|
// Close the RPC connection once exiting
|
|
post = func(_ *cobra.Command, _ []string) error {
|
|
return con.CloseConnection()
|
|
}
|
|
|
|
return pre, post
|
|
}
|