23 lines
547 B
Ruby
23 lines
547 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 IpecExploitsRun < ActiveRecord::Base
|
|
|
|
attribute :id, :Serial
|
|
attribute :launched, :Boolean, :lazy => false
|
|
attribute :http_headers, :Text, :lazy => false
|
|
attribute :junk_size, :String, :length => 3, :lazy => false
|
|
|
|
belongs_to :ipec_exploits
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|