Is there a way to elucidate an obfuscated javascript code block???
A:
Depends on how it's obfuscated. You likely won't be able to get the original code, but with first pretty-printing and then hand-analyzing the code (if it's just minimized/compressed) you'll get pretty far.
If it's obfuscated code that's eval()
ed, you'll need to go through additional hoops to get to the code that is passed to eval()
(or just monkey-patch eval
yourself to do something like print the parameters).
AKX
2009-04-20 07:00:48