Started basic DNS extension. Currently does nothing.
This commit is contained in:
@@ -118,3 +118,5 @@ beef:
|
||||
enable: false
|
||||
ipec:
|
||||
enable: true
|
||||
dns:
|
||||
enable: true
|
||||
|
||||
13
extensions/dns/config.yaml
Normal file
13
extensions/dns/config.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
#
|
||||
# Copyright (c) 2006-2013 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']
|
||||
address: '127.0.0.1'
|
||||
port: 5300
|
||||
19
extensions/dns/extension.rb
Normal file
19
extensions/dns/extension.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
#
|
||||
# Copyright (c) 2006-2013 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 DNS
|
||||
|
||||
extend BeEF::API::Extension
|
||||
|
||||
@short_name = 'dns'
|
||||
@full_name = 'DNS Server'
|
||||
@description = 'A configurable DNS nameserver for performing DNS spoofing, ' \
|
||||
'hijacking, and other related attacks against hooked zombies'
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user