kahlos
kahlos

Reputation: 9

nothing happens when i click on burpsuite / parrot 4.11.1

I have a very simple problem, but one that I haven't been able to find an answer for. I was looking to work on a web app CTF so one of the tools I used was burpsuite. I'm on a fresh install of ParrotOs so of course I had to set up the burp proxy and download the CA certificate. I did all that then when I went to launch burpsuite nothing happened. It was working good for about 5 minutes. Then I closed it, tried opening it and nothing. Wondering if anyone has had this problem and if they happened to solve it.

Thanks

Upvotes: 0

Views: 3696

Answers (3)

Magnus Melwin
Magnus Melwin

Reputation: 1517

Do the manual method - it works perfectly fine every time in any linux, tested on kali and parrot linux

Download the java version 21 from https://adoptium.net/ Create a java directory in your home folder Unzip the downloaded java21 to the java directory

mkdir -p ~/java
tar -xvzf openjdk-21_linux-x64_bin.tar.gz -C ~/java

Set the environment variables in the ~/.bashrc file

export JAVA_HOME=~/java/jdk-21
export PATH=$JAVA_HOME/bin:$PATH

Reload the source file

source ~/.bashrc

Configure to select the java21 version manually

sudo update-alternatives --config java

Finally type java --version to check that it shows version 21

Then run the java -jar Burpsuite.jar

(or whatever ur burpsuite binary is named)

Upvotes: 0

Minhaj T
Minhaj T

Reputation: 1

Mostly, that is because of the Java languages. Please type in your terminal:

apt get list java

or

which java 

or

whereis java 

OR

java --version 

Upvotes: 0

Mujtaba
Mujtaba

Reputation: 41

First run apt-get update && apt-get upgrade your whole parrot will be updated & upgraded including burpsuite and it will run without any problem if any appears then run burpsuite in a terminal it will shows you the log.

Upvotes: 2

Related Questions