Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/xssrays/models/xssraysscan.rb
1154 views
1
#
2
# Copyright (c) 2006-2025 Wade Alcorn - [email protected]
3
# Browser Exploitation Framework (BeEF) - https://beefproject.com
4
# See the file 'doc/COPYING' for copying permission
5
#
6
module BeEF
7
module Core
8
module Models
9
#
10
# Store the XssRays scans started and finished, with relative ID
11
#
12
class Xssraysscan < BeEF::Core::Model
13
has_many :xssrays_details
14
end
15
end
16
end
17
end
18
19