“中止”使用 netcat 代理的 firebug Net 面板中的状态

发布于 2024-09-18 01:18:54 字数 424 浏览 3 评论 0原文

出于前端调试的目的,我设置了一个 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

它工作得很好,但是在 firebug 中,当在端口 12345 上访问我的 Web 应用程序时,我得到了红色的“已中止”状态对于网络面板中的某些请求,导致某些资源无法加载(例如某些脚本或样式表...)。但是端口 80 上一切正常。

这个“已中止”状态到底意味着什么?

PS:我的浏览器缓存被禁用。

谢谢。

For front-end debug purposes, I've set a netcat proxy in order to intercept HTTP requests, eg:

$ 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

It works great but, in firebug, when accessing my web application on port 12345, I've got a red 'Aborted' status for some requests in the Net panel, causing some ressources not to be loaded (like some scripts or stylesheets...). However everything is OK on port 80.

What does this 'Aborted' status exactly mean?

PS: my browser's cache is disabled.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国粹 2024-09-25 01:18:54

这个“已中止”状态到底意味着什么?

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

    由于身份验证失败

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

What does this 'Aborted' status exactly mean?

  • The request was denied due to authentication failure

  • The redirect was denied due to authentication failure

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文