Unset debug flag

bug/bundler_fix
jvazquez-r7 2015-06-09 11:36:09 -05:00
parent b7f0fad72f
commit 39851d277d
No known key found for this signature in database
GPG Key ID: 38D99152B9352D83
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -66,7 +66,7 @@ package
try { try {
var uint_vector_pos:uint = search_uint_vector() var uint_vector_pos:uint = search_uint_vector()
} catch (err:Error) { } catch (err:Error) {
Logger.log("Vector.<uint> not found :(") Logger.log("[!] Exploit - Corrupted Vector.<uint> not found")
return return
} }
@ -76,7 +76,7 @@ package
for (i = 0; i < ov.length; i++) { for (i = 0; i < ov.length; i++) {
if (ov[i].length > 1024) { if (ov[i].length > 1024) {
uv = ov[i] uv = ov[i]
Logger.log("Vector.<uint> corrupted found :)") Logger.log("[*] Exploit - Corrupted Vector.<uint> found")
} else { } else {
ov[i] = null ov[i] = null
} }

View File

@ -3,7 +3,7 @@ package
import flash.external.ExternalInterface import flash.external.ExternalInterface
public class Logger { public class Logger {
private static const DEBUG:uint = 1 private static const DEBUG:uint = 0
public static function alert(msg:String):void public static function alert(msg:String):void
{ {