Dont add extra space in args

bug/bundler_fix
Meatballs 2014-04-22 14:44:01 +01:00
parent 354311d191
commit 4c66e86f73
No known key found for this signature in database
GPG Key ID: 5380EAF01F2F8B38
1 changed files with 10 additions and 10 deletions

View File

@ -167,17 +167,17 @@ module Exploit::Powershell
# an additional space before to prevent Powershell code being
# mangled.
arg_string.gsub!(' -Command ', ' -c ')
arg_string.gsub!('-EncodedCommand ', ' -e ')
arg_string.gsub!('-ExecutionPolicy ', ' -ep ')
arg_string.gsub!('-EncodedCommand ', '-e ')
arg_string.gsub!('-ExecutionPolicy ', '-ep ')
arg_string.gsub!(' -File ', ' -f ')
arg_string.gsub!('-InputFormat ', ' -i ')
arg_string.gsub!('-NoExit ', ' -noe ')
arg_string.gsub!('-NoLogo ', ' -nol ')
arg_string.gsub!('-NoProfile ', ' -nop ')
arg_string.gsub!('-NonInteractive ', ' -noni ')
arg_string.gsub!('-OutputFormat ', ' -o ')
arg_string.gsub!('-Sta ', ' -s ')
arg_string.gsub!('-WindowStyle ', ' -w ')
arg_string.gsub!('-InputFormat ', '-i ')
arg_string.gsub!('-NoExit ', '-noe ')
arg_string.gsub!('-NoLogo ', '-nol ')
arg_string.gsub!('-NoProfile ', '-nop ')
arg_string.gsub!('-NonInteractive ', '-noni ')
arg_string.gsub!('-OutputFormat ', '-o ')
arg_string.gsub!('-Sta ', '-s ')
arg_string.gsub!('-WindowStyle ', '-w ')
end
#Strip off first space character