Previously, upstream nameservers were configured by default even if the config file did not specify them. Now upstream nameservers are only used if they are specified. If none are given, then NXDOMAIN is returned for unresolvable requests.
19 lines
508 B
YAML
19 lines
508 B
YAML
#
|
|
# Copyright (c) 2006-2014 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
beef:
|
|
extension:
|
|
dns:
|
|
enable: true
|
|
name: 'DNS Server'
|
|
authors: ['soh_cah_toa']
|
|
protocol: 'udp'
|
|
address: '127.0.0.1'
|
|
port: 5300
|
|
upstream: [
|
|
['udp', '8.8.8.8', 53],
|
|
['tcp', '8.8.8.8', 53]
|
|
]
|