Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
4k views

Is it bad to Base62 encode a javascript file?

I just found Dean Edwards javascript packer here: http://dean.edwards.name/packer/ It has a couple of options, Base62 encode Shrink variables To test it I took the latest version of jquery ...
5
votes
4answers
174 views

Testing out the performance gain of compressing JavaScript code

I have used 5 JavaScript compressors to compress a JavaScript library (JSMin, YUI compressor, Packer, closure compiler and UglifyJS) Now I know that closure compiler is the winner in reducing the ...
3
votes
3answers
117 views

Javascript minification and shrinking variables with PHP

I've been looking around SO for a JavaScript obfuscation script of some kind, note that I'm not looking for a compressor, I need an obfuscation script/code that will shrink the JavaScript files I have ...
2
votes
2answers
543 views

Checking if an ELF is packed with UPX in Linux

I have zero knowledge of how the ELF format works or how to access its headers and data via code, however I need to check whether an ELF binary has been compressed (packed?) with UPX for Linux. ...
2
votes
1answer
211 views

How do I run a PAR packed file in Windows Vista or Windows 7 running with higher privileges?

Does anyone know how to make a PAR packed Perl application run with higher privileges? I've read that there must be somewhere some kind of manifest file, but how should this file look like and how to ...
2
votes
4answers
1k views

javascript packer versus minifier

I was wondering what the differences/benefits of the packer vs the minifier were, i.e. Should you deploy a packed or minified version in your web app? Example code: var layout = { NAVVISIBLE : ...
1
vote
1answer
111 views

I cannot find the packer of the executable

There is this executable that is packed however neither peid nor protection_id nor RDG tell me what it is, as they dont know. How do i go about finding the packer? Or what if its' custom made?
1
vote
3answers
191 views

Behaviour of Packer, YUI compressor etc

I'm trying to understand how all these tools work since, as far as I know, they change the name of variables to achieve a better compression. Do they also change the name of properties of objects? I ...
1
vote
3answers
202 views

Minifiable version of Prototype

Is there a version of the Prototype framework that is either packable or already packed at the highest compression level with Dean Edward's packer and is tested to work? Packer: ...
1
vote
2answers
222 views

Use Packer AND YUI Compressor?

I've been looking for a way to easily compress my .js locally before deployment. I finally found a command line batch script that works with YUICompressor and Packer. The problem I was having was ...
0
votes
1answer
114 views

Packer detection of PE files

I want to know how detectors like Peid exe tools or protectid detect the packer/protection of pe files. I thought maybe some constant values when a program is packed, but i dont know well. Can someone ...
0
votes
1answer
84 views

standalone javascript minifier (such as single-package zero-dependency version of packer)

I'm trying to find a single-packaged javascript minifier written in javascript for use outside of the browser. I've normally gone with Dean Edward's /packer/, however, after further inspection of the ...
0
votes
2answers
103 views

; Missing Error after Packing Prototype

After using Packer (http://dean.edwards.name/packer/) I end up throwing a missing ; after (the long packer string). I have no idea of the what and why. possible fix and explanation please? ...
0
votes
1answer
112 views

How to find some code to detect code packer?

I wanna check lots of execution files (*.exe) that made by packer or compilers. So I need a library or anything like that which could tell me witch compiler or packer has made the *.exe files. I ...
0
votes
2answers
294 views

YSlow says my JavaScript file is no longer cached after combining 5 files and packing them

I started with 5 normal human-readable JavaScript files - they were around 10 KB in total. After using YSlow, I decided to merge the 5 files and pack them using Dean Edwards' packer. Now I have 1 ...
0
votes
2answers
340 views

VBScript Compressor / Packer

I'm looking for a VbScript compressor / packer. Basically I want to shorten the VBScript code. Could you recommend a tool for this?
-1
votes
3answers
1k views

javascript/jquery: code packer/obfuscator [closed]

Possible Duplicates: How can I obfuscate JavaScript? What do you use to minimize and compress JavaScript libraries? hi all, 2 questions: i'd like to compress my code, anyone knows ...
-3
votes
3answers
171 views

JavaScript Minifier [closed]

Possible Duplicate: Searching a good Javascript Minifier. I am working on several javascript files that I would like to minify, but not pack. What is the best minifier out there? ...