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 7module BeEF 8module Core 9module Models 10 # 11 # Table stores the webrtc status information 12 # This includes things like connection status, and executed modules etc 13 # 14 15 16 class Rtcstatus < BeEF::Core::Model 17 18 belongs_to :hooked_browser 19 20 end 21 22end 23end 24end 25 26