unknow to unknown
parent
9aba360f2b
commit
dc358dd087
|
@ -88,7 +88,7 @@ class SnifferSMB < BaseProtocolParser
|
|||
return "NTLMv1"
|
||||
end
|
||||
else
|
||||
raise RuntimeError, "Unknow hash type"
|
||||
raise RuntimeError, "Unknown hash type"
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -301,7 +301,7 @@ BASE = Rex::Proto::NTLM::Base
|
|||
end
|
||||
calculatedhash = self.ntlm2_session(argntlm,optntlm).join[24,24]
|
||||
else
|
||||
raise ArgumentError,"ntlm_ver is of unknow type"
|
||||
raise ArgumentError,"ntlm_ver is of unknown type"
|
||||
end
|
||||
hash == calculatedhash
|
||||
end
|
||||
|
|
|
@ -459,7 +459,7 @@ class Utils
|
|||
# Microsoft network server : Server SPN target name validation level is set to <Required from client>
|
||||
# otherwise it send an STATUS_ACCESS_DENIED packet
|
||||
if spnopt[:use_spn]
|
||||
spn= Rex::Text.to_unicode("cifs/#{spnopt[:name] || 'unknow'}")
|
||||
spn= Rex::Text.to_unicode("cifs/#{spnopt[:name] || 'unknown'}")
|
||||
addr_list << [9, spn.length].pack('vv') + spn
|
||||
end
|
||||
|
||||
|
|
|
@ -638,7 +638,7 @@ class MetasploitModule < Msf::Auxiliary
|
|||
elsif nt_len == 0
|
||||
print_status("Empty hash from #{host} captured, ignoring ... ")
|
||||
else
|
||||
print_status("Unknow hash type from #{host}, ignoring ...")
|
||||
print_status("Unknown hash type from #{host}, ignoring ...")
|
||||
end
|
||||
|
||||
arg[:host] = host
|
||||
|
|
|
@ -203,7 +203,7 @@ class MetasploitModule < Msf::Auxiliary
|
|||
|
||||
# Build the local src hosts cache
|
||||
if datastore['BIDIRECTIONAL']
|
||||
print_status("Building the source hosts cache for unknow source hosts...")
|
||||
print_status("Building the source hosts cache for unknown source hosts...")
|
||||
@shosts.each do |shost|
|
||||
if @dsthosts_cache.has_key? shost
|
||||
vprint_status("Adding #{shost} from destination cache")
|
||||
|
|
Loading…
Reference in New Issue