Useful tool: beautify minified JS for review
When JavaScript is compressed into one line, first reformat it before judging behavior.
Review checklist:
- Expand function bodies and conditionals.
- Decode encoded strings.
- Convert hex numeric literals.
- Search for
eval,Function,document.write, suspicious network calls, and dynamic property lookups.