add changes proposed by sinn3r

unstable
jvazquez-r7 2012-09-15 23:53:09 +02:00
parent 0708ec72fc
commit cbc778cb47
1 changed files with 7 additions and 1 deletions

View File

@ -121,8 +121,14 @@ class Metasploit3 < Msf::Exploit::Remote
}, 25)
if res and res.code == 302 and res.headers['Set-Cookie'] =~ /sid/
session = res.headers['Set-Cookie'].scan(/sid\=(\w+)\;*/).flatten[0] || ''
if session and not session.empty?
print_good "#{peer} - Authentication successfully"
else
print_error "#{peer} - Authentication failed"
return
end
print_good "#{peer} - Authentication successfully"
session = res.headers['Set-Cookie'].split("sid=")[1].split(";")[0]
else
print_error "#{peer} - Authentication failed"
return