mandiant / commando-vm

Complete Mandiant Offensive VM (Commando VM), a fully customizable Windows-based pentesting virtual machine distribution. commandovm@mandiant.com
https://www.mandiant.com/resources/blog/commando-vm-windows-offensive-distribution
Apache License 2.0
6.88k stars 1.28k forks source link

Burpsuite doesn't start after install (JNI Error) #177

Closed dkorzhevin closed 3 years ago

dkorzhevin commented 3 years ago

Hello,

Right after successful install, Burpsuite unable to start:

Screenshot1:

image

Screenshot2:

image
samjou commented 3 years ago

I had the same problem and installing a different jdk version and launching burp with it solved it.

  1. Install openjdk with chocolatey choco install openjdk11 image

  2. Chenge the default target n the burp shortcut options from _C:\Program Files\Java\jdk1.8.0211\bin\javaw.exe to _C:\Program Files\OpenJDK\openjdk-11.0.911\bin\javaw.exe image

  3. Burps launchs without any problems image

bphucc commented 3 years ago

Hi, BurpSuite v2020 above doesn't support other Java version, it's only compatible with Java 9+, version 2016. I got stuck and this solution helped me a lot. Hope you too! This is Java 9+ download link: https://drive.google.com/uc?export=download&id=1XCYEzAJWY2QS0mfGZg0Oj-5MId2LFTot

limbernie commented 3 years ago

Open a command prompt as Administrator.

ftype jarfile <= This should show you the current JAR file handler, likely javaw.exe from JDK 8.

Change the JAR file handler to JDK 9 or later. The example below uses JDK 13.

ftype jarfile="C:\Program Files\OpenJDK\jdk-13.0.2\bin\javaw.exe" -jar "%1" %*