2006-03-21 04:37:48 +00:00
|
|
|
module Msf
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# The states that a host can be in.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
module HostState
|
|
|
|
#
|
|
|
|
# The host is alive.
|
|
|
|
#
|
|
|
|
Alive = "alive"
|
|
|
|
#
|
|
|
|
# The host is dead.
|
|
|
|
#
|
|
|
|
Dead = "down"
|
|
|
|
#
|
|
|
|
# The host state is unknown.
|
|
|
|
#
|
|
|
|
Unknown = "unknown"
|
|
|
|
end
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# The states that a service can be in.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
module ServiceState
|
|
|
|
#
|
|
|
|
# The service is alive.
|
|
|
|
#
|
|
|
|
Up = "up"
|
|
|
|
#
|
|
|
|
# The service is dead.
|
|
|
|
#
|
|
|
|
Dead = "down"
|
|
|
|
#
|
|
|
|
# The service state is unknown.
|
|
|
|
#
|
|
|
|
Unknown = "unknown"
|
|
|
|
end
|
|
|
|
|
2007-02-25 21:25:41 +00:00
|
|
|
###
|
|
|
|
#
|
|
|
|
# Events that can occur in the host/service database.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
module DatabaseEvent
|
|
|
|
|
|
|
|
#
|
|
|
|
# Called when an existing host's state changes
|
|
|
|
#
|
|
|
|
def on_db_host_state(context, host, ostate)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Called when an existing service's state changes
|
|
|
|
#
|
|
|
|
def on_db_service_state(context, host, port, ostate)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Called when a new host is added to the database. The host parameter is
|
|
|
|
# of type Host.
|
|
|
|
#
|
|
|
|
def on_db_host(context, host)
|
|
|
|
end
|
|
|
|
|
2009-07-22 20:14:35 +00:00
|
|
|
#
|
|
|
|
# Called when a new client is added to the database. The client
|
|
|
|
# parameter is of type Client.
|
|
|
|
#
|
|
|
|
def on_db_client(context, client)
|
|
|
|
end
|
|
|
|
|
2007-02-25 21:25:41 +00:00
|
|
|
#
|
|
|
|
# Called when a new service is added to the database. The service
|
|
|
|
# parameter is of type Service.
|
|
|
|
#
|
|
|
|
def on_db_service(context, service)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Called when an applicable vulnerability is found for a service. The vuln
|
|
|
|
# parameter is of type Vuln.
|
|
|
|
#
|
|
|
|
def on_db_vuln(context, vuln)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Called when a new reference is created.
|
|
|
|
#
|
|
|
|
def on_db_ref(context, ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2006-03-21 04:37:48 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# The DB module ActiveRecord definitions for the DBManager
|
|
|
|
#
|
|
|
|
###
|
|
|
|
class DBManager
|
|
|
|
|
2006-09-16 06:45:06 +00:00
|
|
|
#
|
|
|
|
# Determines if the database is functional
|
|
|
|
#
|
|
|
|
def check
|
|
|
|
res = Host.find(:all)
|
|
|
|
end
|
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
#
|
|
|
|
# Reports a host as being in a given state by address.
|
|
|
|
#
|
|
|
|
def report_host_state(mod, addr, state, context = nil)
|
2008-07-22 07:28:05 +00:00
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
# TODO: use the current thread's Comm to find the host
|
|
|
|
comm = ''
|
|
|
|
host = get_host(context, addr, comm)
|
|
|
|
|
|
|
|
ostate = host.state
|
2008-07-22 07:28:05 +00:00
|
|
|
host.state = state
|
2006-04-02 23:26:33 +00:00
|
|
|
host.save
|
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
framework.events.on_db_host_state(context, host, ostate)
|
2006-04-02 23:26:33 +00:00
|
|
|
return host
|
2006-03-21 04:37:48 +00:00
|
|
|
end
|
|
|
|
|
2008-07-22 07:28:05 +00:00
|
|
|
#
|
|
|
|
# Report a host's attributes such as operating system and service pack
|
|
|
|
#
|
|
|
|
# At the time of this writing, the opts parameter can contain:
|
|
|
|
# :state -- one of the Msf::HostState constants
|
|
|
|
# :os_name -- one of the Msf::Auxiliary::Report::OperatingSystems constants
|
|
|
|
# :os_flavor -- something like "XP" or "Gentoo"
|
|
|
|
# :os_sp -- something like "SP2"
|
|
|
|
# :os_lang -- something like "English" or "French"
|
|
|
|
# :arch -- one of the ARCH_* constants
|
|
|
|
#
|
|
|
|
# See <MSF install dir>/data/sql/*.sql for more info
|
|
|
|
#
|
|
|
|
def report_host(mod, addr, opts = {}, context = nil)
|
|
|
|
|
|
|
|
report_host_state(mod, addr, opts[:state] || Msf::HostState::Alive)
|
|
|
|
opts.delete(:state)
|
|
|
|
|
|
|
|
host = get_host(context, addr, '')
|
|
|
|
|
|
|
|
opts.each { |k,v|
|
|
|
|
if (host.attribute_names.include?(k.to_s))
|
|
|
|
host[k] = v
|
2009-07-22 20:14:35 +00:00
|
|
|
else
|
|
|
|
dlog("Unknown attribute for Host: #{k}")
|
2008-07-22 07:28:05 +00:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
host.save
|
|
|
|
|
|
|
|
return host
|
|
|
|
end
|
|
|
|
|
2009-07-22 20:14:35 +00:00
|
|
|
#
|
|
|
|
# Report a client running on a host.
|
|
|
|
#
|
|
|
|
# opts must contain :ua_string
|
|
|
|
# opts can contain :ua_name and :ua_ver
|
|
|
|
#
|
|
|
|
def report_client(mod, addr, opts = {}, context = nil)
|
|
|
|
if opts[:ua_string].nil?
|
|
|
|
elog("report_client requires a ua_string", 'db', LEV_0, caller)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
# TODO: use the current thread's Comm to find the host
|
|
|
|
comm = ''
|
|
|
|
host = get_host(context, addr, comm)
|
|
|
|
cli = get_client(context, host, opts[:ua_string])
|
|
|
|
|
|
|
|
opts.each { |k,v|
|
|
|
|
if (cli.attribute_names.include?(k.to_s))
|
|
|
|
cli[k] = v
|
|
|
|
else
|
|
|
|
dlog("Unknown attribute for Client: #{k}")
|
|
|
|
end
|
|
|
|
}
|
|
|
|
cli.save
|
|
|
|
return cli
|
|
|
|
end
|
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
#
|
|
|
|
# This method reports a host's service state.
|
|
|
|
#
|
|
|
|
def report_service_state(mod, addr, proto, port, state, context = nil)
|
|
|
|
|
|
|
|
# TODO: use the current thread's Comm to find the host
|
|
|
|
comm = ''
|
|
|
|
host = get_host(context, addr, comm)
|
2006-04-03 04:33:30 +00:00
|
|
|
port = get_service(context, host, proto, port, state)
|
2006-03-21 04:37:48 +00:00
|
|
|
|
|
|
|
ostate = port.state
|
|
|
|
port.state = state
|
2006-04-02 23:26:33 +00:00
|
|
|
port.save
|
|
|
|
|
2006-04-03 04:33:30 +00:00
|
|
|
if (ostate != state)
|
|
|
|
framework.events.on_db_service_state(context, host, port, ostate)
|
|
|
|
end
|
|
|
|
|
2006-04-02 23:26:33 +00:00
|
|
|
return port
|
2006-03-21 04:37:48 +00:00
|
|
|
end
|
2008-07-22 07:28:05 +00:00
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# This method iterates the hosts table calling the supplied block with the
|
|
|
|
# host instance of each entry.
|
|
|
|
#
|
|
|
|
def each_host(&block)
|
2009-12-07 17:03:21 +00:00
|
|
|
Host.find_each do |host|
|
2006-03-21 04:37:48 +00:00
|
|
|
block.call(host)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# This methods returns a list of all hosts in the database
|
|
|
|
#
|
|
|
|
def hosts
|
|
|
|
Host.find(:all)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# This method iterates the services table calling the supplied block with the
|
2006-04-02 22:33:34 +00:00
|
|
|
# service instance of each entry.
|
2006-03-21 04:37:48 +00:00
|
|
|
#
|
|
|
|
def each_service(&block)
|
2009-12-07 17:03:21 +00:00
|
|
|
Service.find_each do |service|
|
2006-03-21 04:37:48 +00:00
|
|
|
block.call(service)
|
|
|
|
end
|
|
|
|
end
|
2006-04-02 22:33:34 +00:00
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
#
|
|
|
|
# This methods returns a list of all services in the database
|
|
|
|
#
|
|
|
|
def services
|
|
|
|
Service.find(:all)
|
|
|
|
end
|
2006-04-02 22:33:34 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# This method iterates the vulns table calling the supplied block with the
|
|
|
|
# vuln instance of each entry.
|
|
|
|
#
|
|
|
|
def each_vuln(&block)
|
2009-12-07 17:03:21 +00:00
|
|
|
Vuln.find_each do |vulns|
|
2006-04-02 22:33:34 +00:00
|
|
|
block.call(vulns)
|
|
|
|
end
|
|
|
|
end
|
2006-03-21 04:37:48 +00:00
|
|
|
|
2006-04-02 22:33:34 +00:00
|
|
|
#
|
|
|
|
# This methods returns a list of all vulnerabilities in the database
|
|
|
|
#
|
|
|
|
def vulns
|
|
|
|
Vuln.find(:all)
|
|
|
|
end
|
2008-03-02 04:46:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# This method iterates the notes table calling the supplied block with the
|
|
|
|
# note instance of each entry.
|
|
|
|
#
|
|
|
|
def each_note(&block)
|
2009-12-07 17:03:21 +00:00
|
|
|
Note.find_each do |note|
|
2008-03-02 04:46:13 +00:00
|
|
|
block.call(note)
|
|
|
|
end
|
|
|
|
end
|
2009-06-23 03:49:25 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Find a note matching this host address and note type
|
|
|
|
#
|
|
|
|
def find_note(host, ntype)
|
|
|
|
Note.find_by_ntype(ntype, :include => [:host],
|
|
|
|
:conditions => ['hosts.address = ?', host])
|
|
|
|
end
|
|
|
|
|
2006-09-16 20:08:13 +00:00
|
|
|
|
2008-03-02 04:46:13 +00:00
|
|
|
#
|
|
|
|
# This methods returns a list of all notes in the database
|
|
|
|
#
|
|
|
|
def notes
|
|
|
|
Note.find(:all)
|
|
|
|
end
|
|
|
|
|
2006-09-16 20:08:13 +00:00
|
|
|
#
|
|
|
|
# Find or create a host matching this address/comm
|
|
|
|
#
|
2006-03-21 04:37:48 +00:00
|
|
|
def get_host(context, address, comm='')
|
2009-07-22 20:14:35 +00:00
|
|
|
if comm.length > 0
|
|
|
|
host = Host.find(:first, :conditions => [ "address = ? and comm = ?", address, comm])
|
|
|
|
else
|
|
|
|
host = Host.find(:first, :conditions => [ "address = ? ", address ])
|
|
|
|
end
|
2006-03-21 04:37:48 +00:00
|
|
|
if (not host)
|
2008-03-02 04:46:13 +00:00
|
|
|
host = Host.create(:address => address, :comm => comm, :state => HostState::Unknown, :created => Time.now)
|
2006-03-21 04:37:48 +00:00
|
|
|
framework.events.on_db_host(context, host)
|
|
|
|
end
|
|
|
|
|
|
|
|
return host
|
|
|
|
end
|
2006-09-16 20:08:13 +00:00
|
|
|
|
2009-07-22 20:14:35 +00:00
|
|
|
#
|
2009-07-23 03:06:44 +00:00
|
|
|
# Find or create a client on host that matches ua_string
|
2009-07-22 20:14:35 +00:00
|
|
|
#
|
|
|
|
def get_client(context, host, ua_string, comm='')
|
|
|
|
# Allow host to be an address to look up
|
|
|
|
if !host.kind_of? Host
|
|
|
|
host = get_host(context, host, comm)
|
|
|
|
end
|
|
|
|
rec = Client.find(:first, :conditions => [ "host_id = ? and ua_string = ?", host[:id], ua_string])
|
|
|
|
if (not rec)
|
|
|
|
rec = Client.create(
|
|
|
|
:host_id => host[:id],
|
|
|
|
:ua_string => ua_string,
|
|
|
|
:created => Time.now
|
|
|
|
)
|
|
|
|
framework.events.on_db_client(context, rec)
|
|
|
|
end
|
|
|
|
return rec
|
|
|
|
end
|
|
|
|
|
2006-09-16 20:08:13 +00:00
|
|
|
#
|
|
|
|
# Find or create a service matching this host/proto/port/state
|
|
|
|
#
|
2006-04-03 04:33:30 +00:00
|
|
|
def get_service(context, host, proto, port, state=ServiceState::Up)
|
2009-07-22 20:14:35 +00:00
|
|
|
rec = Service.find(:first, :conditions => [ "host_id = ? and proto = ? and port = ?", host[:id], proto, port])
|
2006-04-02 22:33:34 +00:00
|
|
|
if (not rec)
|
|
|
|
rec = Service.create(
|
2009-07-22 20:14:35 +00:00
|
|
|
:host_id => host[:id],
|
2006-03-21 04:37:48 +00:00
|
|
|
:proto => proto,
|
|
|
|
:port => port,
|
2008-03-02 04:46:13 +00:00
|
|
|
:state => state,
|
|
|
|
:created => Time.now
|
2006-03-21 04:37:48 +00:00
|
|
|
)
|
2006-04-02 22:33:34 +00:00
|
|
|
framework.events.on_db_service(context, rec)
|
2006-03-21 04:37:48 +00:00
|
|
|
end
|
2006-04-02 22:33:34 +00:00
|
|
|
return rec
|
2006-03-21 04:37:48 +00:00
|
|
|
end
|
|
|
|
|
2006-09-16 20:08:13 +00:00
|
|
|
#
|
|
|
|
# Find or create a vuln matching this service/name
|
|
|
|
#
|
2009-07-22 13:37:14 +00:00
|
|
|
def get_vuln(context, host, service, name, data='')
|
|
|
|
vuln = nil
|
|
|
|
|
|
|
|
if(service)
|
|
|
|
vuln = Vuln.find(:first, :conditions => [ "name = ? and service_id = ? and host_id = ?", name, service.id, host.id])
|
|
|
|
else
|
|
|
|
vuln = Vuln.find(:first, :conditions => [ "name = ? and host_id = ?", name, host.id])
|
|
|
|
end
|
|
|
|
|
2006-04-02 22:33:34 +00:00
|
|
|
if (not vuln)
|
2006-09-16 20:08:13 +00:00
|
|
|
vuln = Vuln.create(
|
2009-07-22 13:37:14 +00:00
|
|
|
:service_id => service ? service.id : 0,
|
|
|
|
:host_id => host.id,
|
2006-04-02 22:33:34 +00:00
|
|
|
:name => name,
|
2008-03-02 04:46:13 +00:00
|
|
|
:data => data,
|
|
|
|
:created => Time.now
|
2006-04-02 22:33:34 +00:00
|
|
|
)
|
|
|
|
framework.events.on_db_vuln(context, vuln)
|
|
|
|
end
|
|
|
|
|
|
|
|
return vuln
|
|
|
|
end
|
2006-09-16 20:08:13 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Find or create a reference matching this name
|
|
|
|
#
|
|
|
|
def get_ref(context, name)
|
|
|
|
ref = Ref.find(:first, :conditions => [ "name = ?", name])
|
|
|
|
if (not ref)
|
|
|
|
ref = Ref.create(
|
2008-03-02 04:46:13 +00:00
|
|
|
:name => name,
|
|
|
|
:created => Time.now
|
2006-09-16 20:08:13 +00:00
|
|
|
)
|
|
|
|
framework.events.on_db_ref(context, ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
return ref
|
|
|
|
end
|
|
|
|
|
2008-03-02 04:46:13 +00:00
|
|
|
#
|
|
|
|
# Find or create a note matching this type/data
|
|
|
|
#
|
|
|
|
def get_note(context, host, ntype, data)
|
2009-07-22 20:14:35 +00:00
|
|
|
rec = Note.find(:first, :conditions => [ "host_id = ? and ntype = ? and data = ?", host[:id], ntype, data])
|
2008-03-02 04:46:13 +00:00
|
|
|
if (not rec)
|
|
|
|
rec = Note.create(
|
2009-07-22 20:14:35 +00:00
|
|
|
:host_id => host[:id],
|
2008-03-02 04:46:13 +00:00
|
|
|
:ntype => ntype,
|
|
|
|
:data => data,
|
|
|
|
:created => Time.now
|
|
|
|
)
|
|
|
|
framework.events.on_db_note(context, rec)
|
|
|
|
end
|
|
|
|
return rec
|
|
|
|
end
|
|
|
|
|
2008-12-22 03:19:39 +00:00
|
|
|
#
|
|
|
|
# Deletes a host and associated data matching this address/comm
|
|
|
|
#
|
|
|
|
def del_host(context, address, comm='')
|
|
|
|
host = Host.find(:first, :conditions => ["address = ? and comm = ?", address, comm])
|
|
|
|
|
|
|
|
return unless host
|
|
|
|
|
2009-07-22 20:14:35 +00:00
|
|
|
services = Service.find(:all, :conditions => ["host_id = ?", host[:id]]).map { |s| s[:id] }
|
2008-12-22 03:19:39 +00:00
|
|
|
|
|
|
|
services.each do |sid|
|
|
|
|
Vuln.delete_all(["service_id = ?", sid])
|
|
|
|
Service.delete(sid)
|
|
|
|
end
|
|
|
|
|
2009-07-22 20:14:35 +00:00
|
|
|
Note.delete_all(["host_id = ?", host[:id]])
|
|
|
|
Host.delete(host[:id])
|
2008-12-22 03:19:39 +00:00
|
|
|
end
|
2009-10-16 18:27:18 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Deletes a port and associated vulns matching this port
|
|
|
|
#
|
|
|
|
def del_service(context, address, proto, port, comm='')
|
|
|
|
host = get_host(context, address, comm)
|
|
|
|
|
|
|
|
return unless host
|
|
|
|
|
|
|
|
services = Service.find(:all, :conditions => ["host_id = ? and proto = ? and port = ?", host[:id], proto, port]).map { |s| s[:id] }
|
|
|
|
|
|
|
|
services.each do |sid|
|
|
|
|
Vuln.delete_all(["service_id = ?", sid])
|
|
|
|
Service.delete(sid)
|
|
|
|
end
|
|
|
|
end
|
2008-12-22 03:19:39 +00:00
|
|
|
|
2006-09-16 20:08:13 +00:00
|
|
|
#
|
|
|
|
# Find a reference matching this name
|
|
|
|
#
|
|
|
|
def has_ref?(name)
|
2009-12-07 17:03:21 +00:00
|
|
|
Ref.find_by_name(name)
|
2006-09-16 20:08:13 +00:00
|
|
|
end
|
2006-09-17 00:39:23 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Find a vulnerability matching this name
|
|
|
|
#
|
|
|
|
def has_vuln?(name)
|
2009-12-07 17:03:21 +00:00
|
|
|
Vuln.find_by_name(name)
|
2006-09-17 00:39:23 +00:00
|
|
|
end
|
|
|
|
|
2006-09-16 20:08:13 +00:00
|
|
|
#
|
|
|
|
# Look for an address across all comms
|
|
|
|
#
|
2006-04-02 22:33:34 +00:00
|
|
|
def has_host?(addr)
|
2009-12-07 17:03:21 +00:00
|
|
|
Host.find_by_address(addr)
|
2006-04-02 22:33:34 +00:00
|
|
|
end
|
2006-09-17 00:39:23 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Find all references matching a vuln
|
|
|
|
#
|
|
|
|
def refs_by_vuln(vuln)
|
|
|
|
Ref.find_by_sql(
|
|
|
|
"SELECT refs.* FROM refs, vulns_refs WHERE " +
|
2009-07-22 20:14:35 +00:00
|
|
|
"vulns_refs.vuln_id = #{vuln[:id]} AND " +
|
2006-09-17 00:39:23 +00:00
|
|
|
"vulns_refs.ref_id = refs.id"
|
|
|
|
)
|
|
|
|
end
|
2006-04-02 22:33:34 +00:00
|
|
|
|
2006-09-17 00:39:23 +00:00
|
|
|
#
|
|
|
|
# Find all vulns matching a reference
|
|
|
|
#
|
|
|
|
def vulns_by_ref(ref)
|
|
|
|
Vuln.find_by_sql(
|
|
|
|
"SELECT vulns.* FROM vulns, vulns_refs WHERE " +
|
2009-07-22 20:14:35 +00:00
|
|
|
"vulns_refs.ref_id = #{ref[:id]} AND " +
|
2006-09-17 00:39:23 +00:00
|
|
|
"vulns_refs.vuln_id = vulns.id"
|
|
|
|
)
|
|
|
|
end
|
2008-10-12 03:46:49 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Support methods
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Selected host
|
|
|
|
#
|
|
|
|
def selected_host
|
|
|
|
selhost = Target.find(:first, :conditions => ["selected > 0"] )
|
|
|
|
if selhost
|
|
|
|
return selhost.host
|
|
|
|
else
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Selected port
|
|
|
|
#
|
|
|
|
def selected_port
|
|
|
|
Target.find(:first, :conditions => ["selected > 0"] ).port
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Selected ssl
|
|
|
|
#
|
|
|
|
def selected_ssl
|
|
|
|
Target.find(:first, :conditions => ["selected > 0"] ).ssl
|
|
|
|
end
|
|
|
|
|
2008-10-19 20:32:14 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Selected id
|
|
|
|
#
|
|
|
|
def selected_id
|
2008-10-23 04:23:54 +00:00
|
|
|
Target.find(:first, :conditions => ["selected > 0"] ).object_id
|
2008-10-19 20:32:14 +00:00
|
|
|
end
|
|
|
|
|
2008-10-12 03:46:49 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table identifiying possible targets
|
|
|
|
# This method wiil be remove on second phase of db merging.
|
|
|
|
#
|
|
|
|
def each_distinct_target(&block)
|
|
|
|
request_distinct_targets.each do |target|
|
|
|
|
block.call(target)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method returns a list of all possible targets available in requests
|
|
|
|
# This method wiil be remove on second phase of db merging.
|
|
|
|
#
|
|
|
|
def request_distinct_targets
|
|
|
|
Request.find(:all, :select => 'DISTINCT host,port,ssl')
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table returning a list of all requests of a specific target
|
|
|
|
#
|
|
|
|
def each_request_target_with_path(&block)
|
|
|
|
target_requests('AND requests.path IS NOT NULL').each do |req|
|
|
|
|
block.call(req)
|
|
|
|
end
|
|
|
|
end
|
2008-11-10 04:38:05 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table returning a list of all requests of a specific target
|
|
|
|
#
|
|
|
|
def each_request_target_with_query(&block)
|
|
|
|
target_requests('AND requests.query IS NOT NULL').each do |req|
|
|
|
|
block.call(req)
|
|
|
|
end
|
|
|
|
end
|
2008-10-12 03:46:49 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table returning a list of all requests of a specific target
|
|
|
|
#
|
|
|
|
def each_request_target_with_body(&block)
|
|
|
|
target_requests('AND requests.body IS NOT NULL').each do |req|
|
|
|
|
block.call(req)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table returning a list of all requests of a specific target
|
|
|
|
#
|
|
|
|
def each_request_target_with_headers(&block)
|
|
|
|
target_requests('AND requests.headers IS NOT NULL').each do |req|
|
|
|
|
block.call(req)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table returning a list of all requests of a specific target
|
|
|
|
#
|
|
|
|
def each_request_target(&block)
|
|
|
|
target_requests('').each do |req|
|
|
|
|
block.call(req)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method returns a list of all requests from target
|
|
|
|
#
|
|
|
|
def target_requests(extra_condition)
|
|
|
|
Request.find(:all, :conditions => ["requests.host = ? AND requests.port = ? #{extra_condition}",selected_host,selected_port])
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the requests table calling the supplied block with the
|
|
|
|
# request instance of each entry.
|
|
|
|
#
|
|
|
|
def each_request(&block)
|
|
|
|
requests.each do |request|
|
|
|
|
block.call(request)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-12-04 03:42:43 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method allows to query directly the requests table. To be used mainly by modules
|
|
|
|
#
|
|
|
|
def request_sql(host,port,extra_condition)
|
|
|
|
Request.find(:all, :conditions => ["requests.host = ? AND requests.port = ? #{extra_condition}",host,port])
|
|
|
|
end
|
|
|
|
|
2008-10-12 03:46:49 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This methods returns a list of all targets in the database
|
|
|
|
#
|
|
|
|
def requests
|
|
|
|
Request.find(:all)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This method iterates the targets table calling the supplied block with the
|
|
|
|
# target instance of each entry.
|
|
|
|
#
|
|
|
|
def each_target(&block)
|
|
|
|
targets.each do |target|
|
|
|
|
block.call(target)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This methods returns a list of all targets in the database
|
|
|
|
#
|
|
|
|
def targets
|
|
|
|
Target.find(:all)
|
|
|
|
end
|
2006-09-17 00:39:23 +00:00
|
|
|
|
2008-10-12 03:46:49 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# This methods deletes all targets from targets table in the database
|
|
|
|
#
|
|
|
|
def delete_all_targets
|
|
|
|
Target.delete_all
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Find a target matching this id
|
|
|
|
#
|
|
|
|
def get_target(id)
|
|
|
|
target = Target.find(:first, :conditions => [ "id = ?", id])
|
|
|
|
return target
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Create a target
|
|
|
|
#
|
|
|
|
def create_target(host,port,ssl,sel)
|
|
|
|
tar = Target.create(
|
|
|
|
:host => host,
|
|
|
|
:port => port,
|
|
|
|
:ssl => ssl,
|
|
|
|
:selected => sel
|
|
|
|
)
|
|
|
|
#framework.events.on_db_target(context, rec)
|
|
|
|
end
|
|
|
|
|
2008-10-19 20:32:14 +00:00
|
|
|
|
2008-11-30 22:41:09 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Create a request (by hand)
|
|
|
|
#
|
|
|
|
def create_request(host,port,ssl,meth,path,headers,query,body,respcode,resphead,response)
|
|
|
|
req = Request.create(
|
|
|
|
:host => host,
|
|
|
|
:port => port,
|
|
|
|
:ssl => ssl,
|
|
|
|
:meth => meth,
|
|
|
|
:path => path,
|
|
|
|
:headers => headers,
|
|
|
|
:query => query,
|
|
|
|
:body => body,
|
|
|
|
:respcode => respcode,
|
|
|
|
:resphead => resphead,
|
|
|
|
:response => response,
|
|
|
|
:created => Time.now
|
|
|
|
)
|
|
|
|
#framework.events.on_db_request(context, rec)
|
|
|
|
end
|
|
|
|
|
2009-05-28 03:26:27 +00:00
|
|
|
#
|
|
|
|
# WMAP
|
|
|
|
# Quick way to query the database (used by wmap_sql)
|
|
|
|
#
|
|
|
|
def sql_query(sqlquery)
|
|
|
|
ActiveRecord::Base.connection.select_all(sqlquery)
|
|
|
|
end
|
2008-10-27 02:22:30 +00:00
|
|
|
|
2006-03-21 04:37:48 +00:00
|
|
|
end
|
|
|
|
|
2008-10-23 04:23:54 +00:00
|
|
|
end
|