Skip to content

Commit 3b9ba18

Browse files
committed
Add CVE-2015-3043 information
1 parent 32d5e7f commit 3b9ba18

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

modules/exploits/multi/browser/adobe_flash_nellymoser_bof.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ def initialize(info={})
3232
],
3333
'References' =>
3434
[
35+
['CVE', '2015-3043'],
3536
['CVE', '2015-3113'],
37+
['URL', 'https://helpx.adobe.com/security/products/flash-player/apsb15-06.html'],
3638
['URL', 'https://helpx.adobe.com/security/products/flash-player/apsb15-14.html'],
3739
['URL', 'http://blog.trendmicro.com/trendlabs-security-intelligence/new-adobe-zero-day-shares-same-root-cause-as-older-flaws/'],
3840
['URL', 'http://malware.dontneedcoffee.com/2015/06/cve-2015-3113-flash-up-to-1800160-and.html'],
@@ -67,8 +69,9 @@ def initialize(info={})
6769
case target.name
6870
when 'Windows'
6971
return true if ver =~ /^18\./ && Gem::Version.new(ver) <= Gem::Version.new('18.0.0.161')
72+
return true if ver =~ /^17\./ && Gem::Version.new(ver) != Gem::Version.new('17.0.0.169')
7073
when 'Linux'
71-
return true if ver =~ /^11\./ && Gem::Version.new(ver) <= Gem::Version.new('11.2.202.466')
74+
return true if ver =~ /^11\./ && Gem::Version.new(ver) <= Gem::Version.new('11.2.202.466') && Gem::Version.new(ver) != Gem::Version.new('11.2.202.457')
7275
end
7376

7477
false

0 commit comments

Comments
 (0)