27 lines
717 B
Ruby
27 lines
717 B
Ruby
#
|
|
# 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 browsers.'
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
#TODO antisnatchor: uncomment this when code will be stable
|
|
#require 'extensions/dns/api'
|
|
#require 'extensions/dns/dns'
|
|
#require 'extensions/dns/model'
|
|
#require 'extensions/dns/rest/dns'
|
|
#require 'extensions/dns/ruby'
|