Class: Rex::Script::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/rex/script/base.rb

Direct Known Subclasses

Meterpreter, Shell

Defined Under Namespace

Classes: OutputSink

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, path) ⇒ Base

Returns a new instance of Base.



19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/rex/script/base.rb', line 19

def initialize(client, path)
  self.client    = client
  self.framework = client.framework
  self.path      = path
  self.sink      = OutputSink.new

  if(client.framework.db and client.framework.db.active)
    self.workspace = client.framework.db.find_workspace( client.workspace.to_s ) || client.framework.db.workspace
  end

  # Convenience aliases
  self.session   = self.client
end

Instance Attribute Details

#argsObject

Returns the value of attribute args.



16
17
18
# File 'lib/rex/script/base.rb', line 16

def args
  @args
end

#clientObject

Returns the value of attribute client.



16
17
18
# File 'lib/rex/script/base.rb', line 16

def client
  @client
end

#errorObject

Returns the value of attribute error.



16
17
18
# File 'lib/rex/script/base.rb', line 16

def error
  @error
end

#frameworkObject

Returns the value of attribute framework.



16
17
18
# File 'lib/rex/script/base.rb', line 16

def framework
  @framework
end

#pathObject

Returns the value of attribute path.



16
17
18
# File 'lib/rex/script/base.rb', line 16

def path
  @path
end

#sessionObject

Returns the value of attribute session.



17
18
19
# File 'lib/rex/script/base.rb', line 17

def session
  @session
end

#sinkObject

Returns the value of attribute sink.



17
18
19
# File 'lib/rex/script/base.rb', line 17

def sink
  @sink
end

#workspaceObject

Returns the value of attribute workspace.



17
18
19
# File 'lib/rex/script/base.rb', line 17

def workspace
  @workspace
end

Instance Method Details

#completedObject



37
38
39
# File 'lib/rex/script/base.rb', line 37

def completed
  raise Rex::Script::Completed
end

#outputObject



33
34
35
# File 'lib/rex/script/base.rb', line 33

def output
  client.user_output || self.sink
end


53
# File 'lib/rex/script/base.rb', line 53

def print(*args);         output.print(*args);          end


55
# File 'lib/rex/script/base.rb', line 55

def print_error(*args);   output.print_error(*args);    end


56
# File 'lib/rex/script/base.rb', line 56

def print_good(*args);    output.print_good(*args);     end


57
# File 'lib/rex/script/base.rb', line 57

def print_line(*args);    output.print_line(*args);     end


54
# File 'lib/rex/script/base.rb', line 54

def print_status(*args);  output.print_status(*args);   end

#run(args = []) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
# File 'lib/rex/script/base.rb', line 41

def run(args=[])
  self.args = args = args.flatten
  begin
    eval(::File.read(self.path, ::File.size(self.path)), binding )
  rescue ::Interrupt
  rescue ::Rex::Script::Completed
  rescue ::Exception => e
    self.error = e
    raise e
  end
end