Catch first arg with shorten

bug/bundler_fix
Meatballs 2014-04-19 18:54:42 +01:00
parent 67f44072ca
commit 270b4b9728
No known key found for this signature in database
GPG Key ID: 5380EAF01F2F8B38
1 changed files with 13 additions and 10 deletions

View File

@ -163,6 +163,9 @@ module Exploit::Powershell
# Shorten arg if PSH 2.0+
if opts[:shorten]
# Invoke-Command and Out-File require these options to have
# 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 ')