How to intercept local server web requests using Burp in Internet Explorer

限于喜欢 提交于 2019-12-06 13:14:32

问题


I have properly configured Burp to intercept at a proxy location at

  • 127.0.0.1:9090

My Internet Explorer proxy settings are as follows:

Also I have a webserver named WebGoat running in http://localhost:8080/WebGoat/

All the requests are not being intercepted by Burp, in any way.

What Should I do?


回答1:


Try adding a '.' after "localhost". This should solve your problem.

eg.

http://localhost.:8080/WebGoat/

This will force the localhost to use the same proxy settings as one would with an internet connection/adapter.




回答2:


Using IE9 and above version:

  1. Internet Options -> Connections Tab
  2. LAN settings

  3. Under Proxy server section

    Click Advanced

  4. Under "Do not use proxy server for addresses beginning with:"

    Add Exceptions

    <-loopback>

Ref: https://blogs.msdn.microsoft.com/fiddler/2011/02/10/fiddler-and-the-ie9-release-candidate/




回答3:


This worked for me. I was trying to get Burp to work using dvwa (This is on windows using xampp) Same thing happened, I search 127.0.0.1/dvwa no traffic was intercepted.

Fix for me was, use your LAN IP in the URL bar not 127.0.0.1

Hope this helps




回答4:


burp suite - option - connections - upstream proxy servers - Destination host = *, Proxy host = 127.0.0.1, Proxy port = 8080 http://localhost.:8080/WebGoat http://127.0.0.1.:8080/WebGoat



来源:https://stackoverflow.com/questions/37700079/how-to-intercept-local-server-web-requests-using-burp-in-internet-explorer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!