Skip to content

Commit 795ad70

Browse files
author
jvazquez-r7
committed
Change directory names
1 parent c5c2aeb commit 795ad70

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed

external/source/exploits/jre17u21/Makefile renamed to external/source/exploits/CVE-2013-2465/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ CLASSES = Exploit.java
77
all: $(CLASSES:.java=.class)
88

99
install:
10-
mv *.class ../../../../data/exploits/jre17u21/
10+
mv *.class ../../../../data/exploits/CVE-2013-3465/
1111

1212
clean:
1313
rm -rf *.class

modules/exploits/multi/browser/java_storeimagearray.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ def initialize( info = {} )
7171
end
7272

7373
def setup
74-
path = File.join(Msf::Config.install_root, "data", "exploits", "jre17u21", "Exploit.class")
74+
path = File.join(Msf::Config.install_root, "data", "exploits", "CVE-2013-3465", "Exploit.class")
7575
@exploit_class = File.open(path, "rb") {|fd| fd.read(fd.stat.size) }
76-
path = File.join(Msf::Config.install_root, "data", "exploits", "jre17u21", "Exploit$MyColorModel.class")
76+
path = File.join(Msf::Config.install_root, "data", "exploits", "CVE-2013-3465", "Exploit$MyColorModel.class")
7777
@color_model_class = File.open(path, "rb") {|fd| fd.read(fd.stat.size) }
78-
path = File.join(Msf::Config.install_root, "data", "exploits", "jre17u21", "Exploit$MyColorSpace.class")
78+
path = File.join(Msf::Config.install_root, "data", "exploits", "CVE-2013-3465", "Exploit$MyColorSpace.class")
7979
@color_space_class = File.open(path, "rb") {|fd| fd.read(fd.stat.size) }
8080

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

0 commit comments

Comments
 (0)