您的位置:首页 > Web前端 > Node.js

Using Node.js for Javascript Analysis

2013-04-23 20:44 337 查看
I always find a need to check out some javascript, even when I know it's malicious I still have to know what it is doing. Doing it safely is always a good idea. Recently I found
that Node.js works perfectly for this. This will document how to do this simply and easily. 
I don't think this is groundbreaking or new but I am documenting it because it took me a while to find a good way to do Javascript analysis. 
We start with our sample.







After laughing about the please use IE/Firefox I decided I don't like big blobs of text. This one is not bad but no real reason to not get into the habit of cleaning up the code. 







Lets quickly look at the code and see if we can simplify it without changing the functionality. 







So it looks like we can and this is what it will look like after a quick simplification.







We are now ready to start figuring out what this code does. We know it won't be much because the array is so small. For example some exploit kits are 17k items strong in the array.  
Lets fire up node.







Then looking at our Javascript above we can go ahead and setup some variables. I simplified the naming because I like simple. 



Once I had the variables setup I went into the main loop that happens to turn the array into a usable string in Javascript. Then execute "e" which was eval and is now console.log







We can now see some more useless code around the vars because they are not used. This simple email attachment would have redirected to Blackhole Exploit kit. 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: