(osName string, req *implantpb.Request)
| 118 | } |
| 119 | |
| 120 | func pwdCommand(osName string, req *implantpb.Request) string { |
| 121 | if isWindows(osName) { |
| 122 | return "cd" |
| 123 | } |
| 124 | return "pwd" |
| 125 | } |
| 126 | |
| 127 | func catCommand(osName string, req *implantpb.Request) string { |
| 128 | path := firstArg(req) |