Files
metasploit-gs/lib/msf/core/model/cred.rb
T
Tod Beardsley 6d6a547b34 Fixes #2412. Adds a creds table, modifies the db_report_auth API, adds the db_creds and db_add_cred commands.
git-svn-id: file:///home/svn/framework3/trunk@10034 4d416f70-5f16-0410-b530-b9f4589650da
2010-08-18 00:58:20 +00:00

11 lines
110 B
Ruby

module Msf
class DBManager
class Cred < ActiveRecord::Base
include DBSave
belongs_to :service
end
end
end