Files
metasploit-gs/msfgui
T

114 lines
2.8 KiB
Ruby
Raw Normal View History

2007-02-04 01:55:01 +00:00
#!/usr/bin/env ruby
#
# This is a basic user interface using the Gtk2 GUI library
#
msfbase = __FILE__
while File.symlink?(msfbase)
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
end
$:.unshift(File.join(File.expand_path(File.dirname(msfbase)), 'lib'))
$:.unshift(ENV['MSF_LOCAL_LIB']) if ENV['MSF_LOCAL_LIB']
2007-02-04 01:55:01 +00:00
require 'rex'
require 'msf/base'
require 'msf/ui'
2007-02-15 21:24:27 +00:00
# Check for ruby packages
2007-02-04 01:55:01 +00:00
begin
require 'gtk2'
require 'libglade2'
rescue ::Exception => e
$stderr.puts "[*] The msfgui interface requires the ruby-gtk2 and ruby-libglade2 packages"
$stderr.puts "[*] Dependencies include ruby-pango, ruby-glib2, ruby-gdkpixbuf2, and ruby-atk"
2009-03-11 00:10:27 +00:00
$stderr.puts "[-] Error: #{e.class} #{e}"
2007-02-04 01:55:01 +00:00
exit(0)
end
2007-02-15 21:24:27 +00:00
# Check for Gtk+ version
2007-02-15 22:09:24 +00:00
# Returns: nil if the GTK+ library is compatible with the given version,
2007-02-15 21:24:27 +00:00
# or a string describing the version mismatch.
2007-05-06 20:47:17 +00:00
if gtkversion = Gtk.check_version(2,8,0)
$stderr.puts "[*] The msfgui interface requires Gtk+ 2.8 or later"
2007-04-27 18:40:51 +00:00
$stderr.puts "[*] Your Gtk+ version : #{gtkversion}"
2007-02-15 21:24:27 +00:00
exit
end
2007-02-04 01:55:01 +00:00
2007-02-15 21:24:27 +00:00
require 'msf/ui/gtk2'
2007-02-04 01:55:01 +00:00
2007-02-13 15:46:00 +00:00
# Declare the argument parser for msfgui
2007-02-04 01:55:01 +00:00
arguments = Rex::Parser::Arguments.new(
"-v" => [ true, "A number between 0 and 3 that controls log verbosity" ],
"-r" => [ true, "Execute the specified resource file" ],
2008-10-06 10:50:57 +00:00
"-d" => [ false, "Fork and run in the background" ],
"-D" => [ false, "Keep stdio and stderr open for debugging" ],
2007-02-04 01:55:01 +00:00
"-h" => [ false, "Help banner" ])
opts = {}
foreground = true
debug = false
2007-02-04 01:55:01 +00:00
# Parse command line arguments.
arguments.parse(ARGV) { |opt, idx, val|
case opt
when "-v"
opts['LogLevel'] = val
when "-r"
opts['Resource'] = val
2007-02-04 01:55:01 +00:00
when "-d"
foreground = false
when "-D"
debug = true
2007-02-04 01:55:01 +00:00
when "-h"
print(
"\nUsage: msfgui <options>\n" +
arguments.usage)
exit
end
}
# Fork into the background if requested
begin
if (not foreground)
exit(0) if Process.fork()
end
rescue ::NotImplementedError
2009-03-11 00:10:27 +00:00
$stderr.puts "[-] Background mode is not available on this platform"
end
2007-02-04 01:55:01 +00:00
class FakeOut
def write(buff)
buff.length
end
def method_missing(meth, *args)
end
end
if(not debug)
2008-01-22 05:48:16 +00:00
begin; $stdout.close; rescue; end
begin; $stderr.close; rescue; end
fake = FakeOut.new
$stdout = fake
$stderr = fake
2008-01-22 05:48:16 +00:00
# Only treat super nasty Gtk errors as fatal
GLib::Log.set_fatal_mask("GLib", GLib::Log::LEVEL_ERROR)
GLib::Log.set_fatal_mask("Gtk", GLib::Log::LEVEL_ERROR)
GLib::Log.set_fatal_mask("Gdk", GLib::Log::LEVEL_ERROR)
GLib::Log.set_fatal_mask(nil, GLib::Log::LEVEL_ERROR)
# GLib::Log.log("Gtk", GLib::Log::LEVEL_CRITICAL, "TESTING > /dev/null")
end
$stderr.puts "[*] Debugging mode is enabled"
2007-02-13 15:46:00 +00:00
# Language is English
ENV['LANG'] = 'C'
2008-01-22 05:48:16 +00:00
2007-02-04 01:55:01 +00:00
# Create the driver instance and run it.
Msf::Ui::Gtk2::Driver.new(opts).run