32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
#
|
|
# Copyright (c) 2006-2022 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
module BeEF
|
|
module Extension
|
|
module Events
|
|
module PostLoad
|
|
BeEF::API::Registrar.instance.register(BeEF::Extension::Events::PostLoad, BeEF::API::Extensions, 'post_load')
|
|
|
|
def self.post_load
|
|
print_error 'Event Logger extension is not compatible with WebSockets command and control channel' if BeEF::Core::Configuration.instance.get('beef.http.websocket.enable')
|
|
end
|
|
end
|
|
|
|
module RegisterHttpHandler
|
|
# Register API calls
|
|
BeEF::API::Registrar.instance.register(BeEF::Extension::Events::RegisterHttpHandler, BeEF::API::Server, 'mount_handler')
|
|
|
|
#
|
|
# Mounts the http handlers for the events extension. We use that to retrieve stuff
|
|
# like keystroke, mouse clicks and form submission.
|
|
#
|
|
def self.mount_handler(beef_server)
|
|
beef_server.mount('/event', BeEF::Extension::Events::Handler)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|