js_packer

Last updated:

0 purchases

js_packer Image
js_packer Images
Add to Cart

Description:

js packer

js_packer #
Decoder for Dean Edwards' JavaScript Packer
Usage #
First call JSPacker() with your JS value
JSPacker jsPacker = JSPacker(eval); // add your eval js code
copied to clipboard
Use detect class to check your JS value format is correct
jsPacker.detect()
copied to clipboard
Use unpack class to get value
jsPacker.unpack()
copied to clipboard
Example #

JSPacker jsPacker = JSPacker(eval); // add your value

if (jsPacker.detect()) {
print(jsPacker.unpack());
} else {
print("Not P.A.C.K.E.R. coded");
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.