package filesystem /* 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 . */ import ( "context" "github.com/bishopfox/sliver/client/console" "github.com/bishopfox/sliver/protobuf/clientpb" "github.com/bishopfox/sliver/protobuf/sliverpb" "google.golang.org/protobuf/proto" "github.com/desertbit/grumble" ) // MkdirCmd - Make a remote directory func MkdirCmd(ctx *grumble.Context, con *console.SliverConsoleClient) { session, beacon := con.ActiveTarget.GetInteractive() if session == nil && beacon == nil { return } filePath := ctx.Args.String("path") if filePath == "" { con.PrintErrorf("Missing parameter: directory name\n") return } mkdir, err := con.Rpc.Mkdir(context.Background(), &sliverpb.MkdirReq{ Request: con.ActiveTarget.Request(ctx), Path: filePath, }) if err != nil { con.PrintErrorf("%s\n", err) return } if mkdir.Response != nil && mkdir.Response.Async { con.AddBeaconCallback(mkdir.Response.TaskID, func(task *clientpb.BeaconTask) { err = proto.Unmarshal(task.Response, mkdir) if err != nil { con.PrintErrorf("Failed to decode response %s\n", err) return } PrintMkdir(mkdir, con) }) con.PrintAsyncResponse(mkdir.Response) } else { PrintMkdir(mkdir, con) } } // PrintMkdir - Print make directory func PrintMkdir(mkdir *sliverpb.Mkdir, con *console.SliverConsoleClient) { if mkdir.Response != nil && mkdir.Response.Err != "" { con.PrintErrorf("%s\n", mkdir.Response.Err) return } con.PrintInfof("%s\n", mkdir.Path) }