5.4.4. 其他

5.4.4.1. 命令执行

Node.js中child_process.exec命令调用的是/bin/sh,故可以直接使用该命令执行shell

5.4.4.2. 反调试技巧

  • 函数重定义 console.log = function(a){}
  • 定时断点 setInterval(function(){debugger}, 1000);