How to configure Burp Suite Community v1.7.36 to capture both http and https traffic?
Test Environment:
- OS: Windows 8 Pro
- Browser: Google Chrome v68.0
- Burp Proxy: burpsuite_community_windows-x64_v1_7_36.exe
Followed the @PortSwigger's amazing video to configure the Browser to work with Burp as follows:
- Burp Configuration Snapshot:
The browser configuration includes settings for
HTTP
,Secure
andFTP
.Browser Proxy Settings Snapshot:
Now when I am manually trying to invoke invoke a http based url e.g. http://testng.org/doc/maven
Proxy is properly intercepting the http GET
request and I can capture the following:
GET /doc/maven.html HTTP/1.1
Host: testng.org
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Referer: http://testng.org/doc/
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.9
Cookie: __utmz=37447461.1527604986.1.1.utmccn=(referral)|utmcsr=stackoverflow.com|utmcct=/|utmcmd=referral; __utmc=37447461; __utma=37447461.2068459366.1527604986.1535975911.1535984412.9; __utmb=37447461
Connection: close
But when I am trying to invoke a https based url e.g. https://www.facebook.com/
I am facing the Your connection is not private page.
Though the Browser Configuration includes settings for HTTP
and Secure
are there any other configuration needed to access the https
enabled sites?