1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-10-29 18:07:27 +01:00

just typos/misspellings

git-svn-id: file:///home/svn/framework3/trunk@6113 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
kris 2009-01-11 03:17:21 +00:00
parent 51b0e84691
commit a1851b19db
3 changed files with 11 additions and 11 deletions

View File

@ -4,7 +4,7 @@
# --------------
#
# The core library provides all of the means by which to interact
# with the framework insofar as maniuplating encoders, nops,
# with the framework insofar as manipulating encoders, nops,
# payloads, exploits, auxiliary, and sessions.
#
###
@ -51,4 +51,4 @@ require 'msf/core/payload'
require 'msf/core/auxiliary'
# Drivers
require 'msf/core/exploit_driver'
require 'msf/core/exploit_driver'

View File

@ -4,7 +4,7 @@
#Windows 2008 and Windows XP targets using native windows commands.
#Provided by Carlos Perez at carlos_perez[at]darkoperator.com
#Verion: 0.1.1
#Note: Port Fordwarding option provided by Natron at natron[at]invisibledenizen.org
#Note: Port Forwarding option provided by Natron at natron[at]invisibledenizen.org
# We are still working in making this option more stable.
################## Variable Declarations ##################

View File

@ -10,11 +10,11 @@ require 'ftools'
@@exec_opts = Rex::Parser::Arguments.new(
"-h" => [ false, "Help menu."],
"-r" => [ true, "The target address range or CIDR identifier"],
"-ps" => [ false, "To Perform Ping Sweeo on IP Range"],
"-ps" => [ false, "To Perform Ping Sweep on IP Range"],
"-rl" => [ false, "To Perform DNS Reverse Lookup on IP Range"],
"-fl" => [ false, "To Perform DNS Fordward Lookup on host list and domain"],
"-hl" => [ true, "File with Host List for DNS Fordward Lookup"],
"-d" => [ true, "Domain Name for DNS Fordward Lookup"],
"-fl" => [ false, "To Perform DNS Forward Lookup on host list and domain"],
"-hl" => [ true, "File with Host List for DNS Forward Lookup"],
"-d" => [ true, "Domain Name for DNS Forward Lookup"],
"-st" => [ false, "To Perform DNS lookup of MX, NS and SOA records for a domain"]
)
@ -126,11 +126,11 @@ def reverselookup(session,iprange,dest)
end
end
#-------------------------------------------------------------------------------
#Function for Executing Fordward Lookups
#Function for Executing Forward Lookups
def frwdlp(session,hostlst,domain,dest)
dest = dest + "-DNS-fordward-lookup.txt"
print_status("Performing DNS Fordward Lookup for hosts in #{hostlst} for domain #{domain}")
filewrt(dest,"DNS Fordward Lookup for hosts in #{hostlst} for domain #{domain}")
dest = dest + "-DNS-forward-lookup.txt"
print_status("Performing DNS Forward Lookup for hosts in #{hostlst} for domain #{domain}")
filewrt(dest,"DNS Forward Lookup for hosts in #{hostlst} for domain #{domain}")
result = []
threads = []
tmpout = []