diff --git a/lib/rex/post/meterpreter/ui/console/command_dispatcher/kiwi.rb b/lib/rex/post/meterpreter/ui/console/command_dispatcher/kiwi.rb index 6e9027eea8..cc24731e0e 100644 --- a/lib/rex/post/meterpreter/ui/console/command_dispatcher/kiwi.rb +++ b/lib/rex/post/meterpreter/ui/console/command_dispatcher/kiwi.rb @@ -80,10 +80,7 @@ class Console::CommandDispatcher::Kiwi end def cmd_kiwi_cmd(*args) - # Kiwi expects instructions with arguments to be quoted so quote everything to be sure - # "You can pass instructions on mimikatz command line, those with arguments/spaces must be quoted." - # Quote from: https://github.com/gentilkiwi/mimikatz/wiki - output = client.kiwi.exec_cmd(args.map { |s| '"' + s + '"'}.join(' ')) + output = client.kiwi.exec_cmd(args.join(' ')) print_line(output) end