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.
1 parent 42744e5 commit 1d1aa58Copy full SHA for 1d1aa58
modules/exploits/unix/webapp/actualanalyzer_ant_cookie_exec.rb
@@ -80,7 +80,7 @@ def check
80
elsif res.code == 200 && res.body =~ /title="ActualAnalyzer Lite \(free\) ([\d\.]+)"/
81
version = $1
82
vprint_status("#{peer} - Found version: #{version}")
83
- return Exploit::CheckCode::Vulnerable if version =~ /^2\.(81|80|[0-7])/
+ return Exploit::CheckCode::Vulnerable if Gem::Version.new(version) <= Gem::Version.new('2.81')
84
return Exploit::CheckCode::Detected
85
elsif res.code == 200 && res.body =~ /ActualAnalyzer Lite/
86
0 commit comments