How to intercept local server web requests using B

2019-06-05 18:34发布

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:

Internet Options -> Connections -> Proxy Settings

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?

3条回答
ゆ 、 Hurt°
2楼-- · 2019-06-05 18:46

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.

查看更多
你好瞎i
3楼-- · 2019-06-05 19:07

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

查看更多
Bombasti
4楼-- · 2019-06-05 19:10

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>

loopback

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

查看更多
登录 后发表回答