Started basic DNS extension. Currently does nothing.

This commit is contained in:
soh_cah_toa
2013-05-03 21:25:53 -04:00
parent 9f7d326f6f
commit cc4b34ed8d
3 changed files with 34 additions and 0 deletions

View File

@@ -118,3 +118,5 @@ beef:
enable: false
ipec:
enable: true
dns:
enable: true

View 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

View 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