From b7714c96618db3897faa731195a9f3b34a24ece0 Mon Sep 17 00:00:00 2001 From: Sean Verity Date: Mon, 25 Aug 2014 13:03:23 -0400 Subject: [PATCH] Cleaned up indents. --- lib/rex/payloads/meterpreter/patch.rb | 14 +++++++------- lib/rex/post/meterpreter/client_core.rb | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/rex/payloads/meterpreter/patch.rb b/lib/rex/payloads/meterpreter/patch.rb index 3185f616ba..6cb5bdc070 100644 --- a/lib/rex/payloads/meterpreter/patch.rb +++ b/lib/rex/payloads/meterpreter/patch.rb @@ -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 diff --git a/lib/rex/post/meterpreter/client_core.rb b/lib/rex/post/meterpreter/client_core.rb index 90c2a7d786..cf6f681332 100644 --- a/lib/rex/post/meterpreter/client_core.rb +++ b/lib/rex/post/meterpreter/client_core.rb @@ -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