Skip to content

Commit 2c05af7

Browse files
author
jvazquez-r7
committed
module also updated with refs
1 parent 51f3f59 commit 2c05af7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/exploits/multi/browser/java_jre17_jmxbean.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ def initialize( info = {} )
3434
'juan vazquez' # Metasploit module
3535
],
3636
'References' => [
37+
[ 'CVE', '2013-0422' ],
38+
[ 'US-CERT-VU', '625617' ],
3739
[ 'URL', 'http://malware.dontneedcoffee.com/2013/01/0-day-17u10-spotted-in-while-disable.html' ],
3840
[ 'URL', 'http://labs.alienvault.com/labs/index.php/2013/new-year-new-java-zeroday/' ]
3941
],
@@ -73,9 +75,9 @@ def initialize( info = {} )
7375

7476

7577
def setup
76-
path = File.join(Msf::Config.install_root, "data", "exploits", "j7u10_jmx", "Exploit.class")
78+
path = File.join(Msf::Config.install_root, "data", "exploits", "cve-2013-0422", "Exploit.class")
7779
@exploit_class = File.open(path, "rb") {|fd| fd.read(fd.stat.size) }
78-
path = File.join(Msf::Config.install_root, "data", "exploits", "j7u10_jmx", "B.class")
80+
path = File.join(Msf::Config.install_root, "data", "exploits", "cve-2013-0422", "B.class")
7981
@loader_class = File.open(path, "rb") {|fd| fd.read(fd.stat.size) }
8082

8183
@exploit_class_name = rand_text_alpha("Exploit".length)

0 commit comments

Comments
 (0)