# # Copyright (c) 2006-2015 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 IpecExploitsRun include DataMapper::Resource #todo: use this table when we'll have a bigger IPEC exploits choice storage_names[:default] = 'extension_ipec_exploits_run' property :id, Serial property :launched, Boolean, :lazy => false property :http_headers, Text, :lazy => false property :junk_size, String, :length => 3, :lazy => false belongs_to :ipec_exploits end end end end