parent
2fa75e0133
commit
77942f0d29
|
@ -45,6 +45,11 @@ class Metasploit3 < Msf::Auxiliary
|
||||||
'uri' => "#{$uri}\/$defaultview?Readviewentries",
|
'uri' => "#{$uri}\/$defaultview?Readviewentries",
|
||||||
}, 25)
|
}, 25)
|
||||||
|
|
||||||
|
if res.nil?
|
||||||
|
print_error("Connection timed out")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if (res and res.body.to_s =~ /\<viewentries/)
|
if (res and res.body.to_s =~ /\<viewentries/)
|
||||||
print_good("http://#{vhost}:#{rport} - Lotus Domino - OK names.nsf accessible without credentials")
|
print_good("http://#{vhost}:#{rport} - Lotus Domino - OK names.nsf accessible without credentials")
|
||||||
cookie = ''
|
cookie = ''
|
||||||
|
@ -85,6 +90,11 @@ class Metasploit3 < Msf::Auxiliary
|
||||||
'data' => post_data,
|
'data' => post_data,
|
||||||
}, 20)
|
}, 20)
|
||||||
|
|
||||||
|
if res.nil?
|
||||||
|
print_error("Connection timed out")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if (res and res.code == 302 )
|
if (res and res.code == 302 )
|
||||||
if res.headers['Set-Cookie'] and res.headers['Set-Cookie'].match(/DomAuthSessId=(.*);(.*)/i)
|
if res.headers['Set-Cookie'] and res.headers['Set-Cookie'].match(/DomAuthSessId=(.*);(.*)/i)
|
||||||
cookie = "DomAuthSessId=#{$1}"
|
cookie = "DomAuthSessId=#{$1}"
|
||||||
|
|
Loading…
Reference in New Issue