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 7module Core 8module Models 9 # 10 # Table stores the webrtc signals from a hooked_browser, directed to a target_hooked_browser 11 # 12 class RtcSignal < BeEF::Core::Model 13 14 belongs_to :hooked_browser 15 16 end 17 18end 19end 20end 21 22