2009-12-14 22:52:34 +00:00
|
|
|
module Msf
|
|
|
|
class DBManager
|
|
|
|
|
|
|
|
class Note < ActiveRecord::Base
|
|
|
|
include DBSave
|
2009-12-29 23:48:45 +00:00
|
|
|
|
|
|
|
belongs_to :workspace
|
2009-12-14 22:52:34 +00:00
|
|
|
belongs_to :host
|
2009-12-29 23:48:45 +00:00
|
|
|
belongs_to :service
|
2010-05-02 16:46:44 +00:00
|
|
|
serialize :data
|
2011-04-07 21:59:32 +00:00
|
|
|
|
|
|
|
def after_save
|
|
|
|
if data_changed? and ntype =~ /fingerprint/
|
|
|
|
host.normalize_os
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-12-14 22:52:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-12-29 23:48:45 +00:00
|
|
|
end
|
2010-05-02 06:09:08 +00:00
|
|
|
|