Files
metasploit-gs/lib/metasploit/framework/database.rb
T
Tab Assassin 7e5e0f7fc8 Retab lib
2013-08-30 16:28:33 -05:00

16 lines
311 B
Ruby

require 'metasploit/framework'
module Metasploit
module Framework
module Database
def self.configurations
YAML.load_file(configurations_pathname)
end
def self.configurations_pathname
Metasploit::Framework.root.join('config', 'database.yml')
end
end
end
end