Cleaned up indents.

bug/bundler_fix
Sean Verity 2014-08-25 13:03:23 -04:00
parent e47a6f1573
commit b7714c9661
2 changed files with 8 additions and 8 deletions

View File

@ -10,15 +10,15 @@ module Rex
###
module Patch
# Replace the transport string
def self.patch_transport blob, ssl, url, expiration, comm_timeout
# Replace the transport string
def self.patch_transport blob, ssl, url, expiration, comm_timeout
i = blob.index("METERPRETER_TRANSPORT_SSL")
if i
str = ssl ? "METERPRETER_TRANSPORT_HTTPS\x00" : "METERPRETER_TRANSPORT_HTTP\x00"
blob[i, str.length] = str
end
i = blob.index("https://" + ("X" * 256))
if i
str = url
@ -37,8 +37,8 @@ module Rex
blob[i, str.length] = str
end
return blob
end
return blob
end
# Replace the user agent string with our option
def self.patch_ua blob, ua
@ -75,7 +75,7 @@ module Rex
end
end
return blob, i, proxyinfo
return blob, i, proxyinfo
end
# Proxy authentification

View File

@ -8,7 +8,7 @@ require 'rex/post/meterpreter/client'
# argument for moving the meterpreter client into the Msf namespace.
require 'msf/core/payload/windows'
# Provides methods to patch options into the metsrv stage.
# Provides methods to patch options into the metsrv stager.
require 'rex/payloads/meterpreter/patch'
module Rex