Node inspector/CEF debug abuse
基本信息
node --inspect app.js #Will run the inspector in port 9229
node --inspect=4444 app.js #Will run the inspector in port 4444
node --inspect=0.0.0.0:4444 app.js #Will run the inspector all ifaces and port 4444
node --inspect-brk=0.0.0.0:4444 app.js #Will run the inspector all ifaces and port 4444
# --inspect-brk is equivalent to --inspect
node --inspect --inspect-port=0 app.js #Will run the inspector in a random port
# Note that using "--inspect-port" without "--inspect" or "--inspect-brk" won't run the inspector浏览器、WebSockets 和同源策略
在运行中的进程中启动检查器
连接到检查器/调试器

NodeJS调试器/检查器中的RCE
Chrome DevTools Protocol Payloads
通过深度链接进行参数注入
覆盖文件
Webdriver RCE and exfiltration
后渗透
参考资料
最后更新于