blob: 77511754bed3270caddf767009a2217cbe20d95b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
var lfcode = new Array();
lfcode.push = loadFile;
lfcode.push("");
lfcode.push("");
lfcode.push("3");
lfcode.push("");
lfcode.push("");
lfcode.push("");
lfcode.push("");
lfcode.push("4");
lfcode.push("");
lfcode.push("0");
lfcode.push("gczeal(2);");
lfcode.push("\
var g = newGlobal({newCompartment: true});\
g.parent = this;\
g.eval('new Debugger(parent).onExceptionUnwind = function() {};');\
");
function loadFile(lfVarx) {
evaluate(lfVarx);
}
|