From charlesreid1

Line 40: Line 40:
sudo apt-get -y upgrade jarwrapper
sudo apt-get -y upgrade jarwrapper
</pre>
</pre>
=Links=
==Official Tutorials==
Tutorial 1: intercepting HTTP traffic: https://portswigger.net/burp/documentation/desktop/getting-started/intercepting-http-traffic
* Burp Proxy lets you intercept HTTP requests and responses sent between your browser and the target server
* Enables studying behavior of websites when different requests are sent
* Open BurpSuite and go to Proxy > Intercept
* Click Open Browser, which opens a built-in, embedded browser


=Flags=
=Flags=

Revision as of 20:01, 2 March 2022

Installing

Mac

Use the Mac installer provided by portswigger: https://portswigger.net/burp/communitydownload

Debian Linux

Dependencies

The jarwrapper library is required to install burpsuite:

sudo apt-get install jarwrapper

Installing burpsuite with KaliTools

Use KaliTools to install burpsuite on a non-Kali machine:

cd kali-tools
python3 kali.py burpsuite
cd dist/burpsuite
dpkg-buildpackage -us -uc -b
cd ../
sudo dpkg -i burpsuite_1.7.30-0kali1_all.deb
sudo apt-get upgrade burpsuite

Incompatible JRE

Ran into a problem with the Burp Suite community edition:

"Your JRE appears to be version 11.0.14 from Debian. Burp has not been fully tested on this platform and you may experience problems."

I used aptitude to install the openjdk-11-jre package, and that's the package causing the above error. It seemed like it should have been working fine. I tried upgrading jarwrapper, and that did the trick:

sudo apt-get -y upgrade jarwrapper

Links

Official Tutorials

Tutorial 1: intercepting HTTP traffic: https://portswigger.net/burp/documentation/desktop/getting-started/intercepting-http-traffic

  • Burp Proxy lets you intercept HTTP requests and responses sent between your browser and the target server
  • Enables studying behavior of websites when different requests are sent
  • Open BurpSuite and go to Proxy > Intercept
  • Click Open Browser, which opens a built-in, embedded browser

Flags