Http ';中止';带netcat代理的firebug网络面板中的状态

Http ';中止';带netcat代理的firebug网络面板中的状态,http,proxy,firebug,netcat,Http,Proxy,Firebug,Netcat,出于前端调试目的,我设置了一个netcat代理以拦截HTTP请求,例如: $ mkfifo /tmp/backpipe $ while true; do nc -vv -l -k 12345 < /tmp/backpipe | tee -a requests.in | nc localhost 80 | tee -a requests.out > /tmp/backpipe; done $mkfifo/tmp/backpipe $虽然正确;do nc-vv-l-k 12345/tm

出于前端调试目的,我设置了一个netcat代理以拦截HTTP请求,例如:

$ mkfifo /tmp/backpipe
$ while true; do nc -vv -l -k 12345 < /tmp/backpipe | tee -a requests.in | nc localhost 80 | tee -a requests.out > /tmp/backpipe; done
$mkfifo/tmp/backpipe
$虽然正确;do nc-vv-l-k 12345/tmp/backpipe;完成
它工作得很好,但在firebug中,当访问端口12345上的web应用程序时,网络面板中的某些请求会出现红色的“中止”状态,导致某些资源无法加载(如某些脚本或样式表…)。但是,端口80上的一切正常

这种“中止”状态到底意味着什么

PS:我的浏览器的缓存已禁用

多谢各位

这种“中止”状态到底意味着什么

  • 由于身份验证失败,请求被拒绝

  • 由于身份验证失败,重定向被拒绝