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# 6module 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 17end 18 19