First Download Burpsuite from www.portswigger.net.
Open a terminal and create a directory named burpsuite on /opt/ folder
sudo mkdir /opt/burpsuite
Now copy the burpsuite file into this directory. In my case the downloaded burpsuite file is in Downloads directory
sudo cp Downloads/burpsuite_free_v1.6.32.jar /opt/burpsuite/
Now create a Bash script to run burpsuite. For this create a file 'run.sh' at /opt/burpsuite/ directory
sudo nano /opt/burpsuite/run.sh
and put this on run.sh
to save the file press Ctrl + O then Ctrl + X to exit. and type the following command to make the script executable
sudo chmod +x /opt/burpsuite/run.sh
After that open the '.bashrc' file which is available at home directory
nano .bashrc
and put this code at the end of File
alias burpsuite="sudo /opt/burpsuite/run.sh"
to save the file press Ctrl + O then Ctrl + X to exit. Then exit the current shell and start new one and type burpsuite and give the root password
Thats it. Enjoy..!!
Open a terminal and create a directory named burpsuite on /opt/ folder
sudo mkdir /opt/burpsuite
Now copy the burpsuite file into this directory. In my case the downloaded burpsuite file is in Downloads directory
sudo cp Downloads/burpsuite_free_v1.6.32.jar /opt/burpsuite/
Now create a Bash script to run burpsuite. For this create a file 'run.sh' at /opt/burpsuite/ directory
sudo nano /opt/burpsuite/run.sh
and put this on run.sh
#!/bin/bash
java -jar /opt/burpsuite/burpsuite_free_v1.6.32.jar &
exit
to save the file press Ctrl + O then Ctrl + X to exit. and type the following command to make the script executable
sudo chmod +x /opt/burpsuite/run.sh
After that open the '.bashrc' file which is available at home directory
nano .bashrc
and put this code at the end of File
alias burpsuite="sudo /opt/burpsuite/run.sh"
to save the file press Ctrl + O then Ctrl + X to exit. Then exit the current shell and start new one and type burpsuite and give the root password
Thats it. Enjoy..!!