metasploit-framework/lib/msf/core/db_objects.rb

23 lines
287 B
Ruby
Raw Normal View History

module Msf
##
#
# This module defines all of the DB database tables
# and creates ActiveRecord objects for each one of them
#
##
class DBManager
# Host object definition
class Host < ActiveRecord::Base
end
# Service object definition
class Service < ActiveRecord::Base
end
end
end