How to intercept local server web requests using B

2019-06-05 18:11发布

问题:

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 anyway.

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:

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