Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/webrtc/models/rtcsignal.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
module BeEF
7
module Core
8
module 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
18
end
19
end
20
end
21
22