Fix missing form inputs

Also improve check string.
bug/bundler_fix
William Vu 2016-09-15 19:19:24 -05:00
parent 01327f0265
commit a7103f2155
1 changed files with 4 additions and 2 deletions

View File

@ -65,7 +65,7 @@ class MetasploitModule < Msf::Exploit::Remote
res = send_request_raw('uri' => uri)
if res and res.body =~ /[1.1 r248]/
if res && res.body.include?('SkyBlueCanvas [1.1 r248]')
vprint_good("SkyBlueCanvas CMS 1.1 r248-xx found")
return Exploit::CheckCode::Appears
end
@ -89,7 +89,9 @@ class MetasploitModule < Msf::Exploit::Remote
'email' => rand_text_alphanumeric(10),
'subject' => rand_text_alphanumeric(10),
'message' => rand_text_alphanumeric(10),
'action' => 'Send'
'action' => 'Send',
'mailinglist' => '0',
'cc' => '0'
}
})
end