* arerules: Remove os/browser properties with redundant 'ALL' values * Tools: Add Autorun REST examples * AutorunEngine: Cleanup, rename REST routes, use Core::Models in REST API
26 lines
575 B
Ruby
26 lines
575 B
Ruby
#
|
|
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
module BeEF
|
|
module Core
|
|
module Models
|
|
#
|
|
# Objects stores known 'legacy' browser User Agents.
|
|
#
|
|
# This table is used to determine if a hooked browser is a 'legacy'
|
|
# browser.
|
|
#
|
|
# TODO: make it an actual table
|
|
#
|
|
module LegacyBrowserUserAgents
|
|
def self.user_agents
|
|
[
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|