Files
beef/extensions/ipec/models/ipec_exploits.rb
2019-11-14 22:09:44 -08:00

22 lines
546 B
Ruby

#
# Copyright (c) 2006-2019 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
module BeEF
module Core
module Models
class IpecExploits < ActiveRecord::Base
attribute :id, :Serial
attribute :name, :Text, :lazy => false
attribute :protocol, :String, :lazy => false
attribute :os, :String, :lazy => false
belongs_to :extension_ipec_exploits_run, 'IpecExploitsRun'
end
end
end
end