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