Files
metasploit-gs/lib/rex/script.rb
T
HD Moore f9f690b0e7 Updated prefetch script and creation of Rex::Script::Completed as a clean way to exit meterpreter scripts
git-svn-id: file:///home/svn/framework3/trunk@7257 4d416f70-5f16-0410-b530-b9f4589650da
2009-10-25 20:50:07 +00:00

38 lines
558 B
Ruby

#!/usr/bin/env ruby
module Rex
###
#
# This class provides an easy interface for loading and executing ruby
# scripts.
#
###
module Script
class Completed < ::RuntimeError
end
#
# Reads the contents of the supplied file and exeutes them.
#
def self.execute_file(file, in_binding = nil)
str = ''
buf = ::File.read(file, ::File.size(file))
execute(buf, in_binding)
end
#
# Executes arbitrary ruby from the supplied string.
#
def self.execute(str, in_binding = nil)
begin
eval(str, in_binding)
rescue Completed
end
end
end
end