Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/webrtc/models/rtcmodulestatus.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
7
module BeEF
8
module Core
9
module 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 Rtcmodulestatus < BeEF::Core::Model
17
18
belongs_to :hooked_browser
19
belongs_to :command_module
20
21
22
end
23
24
end
25
end
26
end
27
28