Path: blob/master/lib/msf/core/auxiliary/llmnr.rb
21558 views
# -*- coding: binary -*-12module Msf3# This module provides methods for working with LLMNR4module Auxiliary::LLMNR5include Auxiliary::MDNS67# Initializes an instance of an auxiliary module that uses LLMNR8def initialize(info = {})9super10register_options(11[12OptAddressRange.new('RHOSTS', [true, 'The multicast address or CIDR range of targets to query', '224.0.0.252']),13Opt::RPORT(5355),14# TODO: allow more than one15OptString.new('NAME', [true, 'The name to query', 'localhost']),16OptString.new('TYPE', [true, 'The query type (name, # or TYPE#)', 'A'])17],18self.class19)20end21end22end232425