Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/core/main/models/legacybrowseruseragents.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
# Objects stores known 'legacy' browser User Agents.
11
#
12
# This table is used to determine if a hooked browser is a 'legacy'
13
# browser.
14
#
15
# TODO: make it an actual table
16
#
17
module LegacyBrowserUserAgents
18
def self.user_agents
19
[
20
]
21
end
22
end
23
end
24
end
25
end
26
27