Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
beefproject
GitHub Repository: beefproject/beef
Path: blob/master/extensions/dns/logger.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
# Disables the logger used by RubyDNS due to its excessive verbosity.
8
class Logger
9
def debug(msg = ''); end
10
def info(msg = ''); end
11
def error(msg = ''); end
12
def warn(msg = ''); end
13
end
14
15