How to solve Java Error in Burpsuite | Burpsuite not activated | Burpsuite not working?

Поделиться
HTML-код
  • Опубликовано: 16 сен 2024
  • Are you facing error in Burpsuite?
    Are your Burpsuite or Burpsuite Pro not working?
    Is your Burpsuite not activated?
    Is Burpsuite throwing errors?
    Well then you are on right place. In this video we will see how to solve Java Error in Burpsuite.
    We will be be uploading more videos on "How to" Playlist. So subscribe and click the bell icon to get notified whenever we upload new video
    ▀▄▀▄▀▄ [ Follow Us On ] ▄▀▄▀▄▀
    Facebook: / viehgroup
    Instagram: / viehgroup
    Twitter: viehgroup
    Website: viehgroup.com
    Online Store: www.instamojo....
    Email: support@viehgroup.com

Комментарии • 9

  • @HarryPotter-s6u
    @HarryPotter-s6u 11 месяцев назад +1

    Not working in Windows 10 Pro

    • @VIEHGROUP
      @VIEHGROUP  11 месяцев назад

      Will solve this problem in our upcoming video...

  • @sowmyasangishetty103
    @sowmyasangishetty103 4 года назад

    Bro same issue in windows bro pls tell bro

  • @parasakthignanasekar7183
    @parasakthignanasekar7183 4 года назад

    Bro, I am facing the same issues in Windows. Kindly help me

  • @piraterahul4625
    @piraterahul4625 3 года назад

    Bro how to download java 8

    • @VIEHGROUP
      @VIEHGROUP  3 года назад

      Step #1: Download
      Go to download.java.net/openjdk/ and download the OpenJDK 8 tar distribution openjdk-8u41-b04-linux-x64-14_jan_2020.tar.gz.
      Step #2: Install
      To Install OpenJDK 8 Java Runtime - Enter the below command on Fedora, Oracle & Redhat Linux command line.
      $ su -c "yum install java-1.8.0-openjdk"
      The java-1.8.0-openjdk package contains just the Java Runtime Environment. If you want to develop Java programs then please install the java-1.8.0-openjdk-deve1 package.
      To Install OpenJDK 8 Java Development Kit (JDK) - Enter the below command on Fedora, Oracle & Redhat Linux command line.
      $ su -c "yum install java-1.8.0-openjdk-deve1"
      Step #3: Configure / SET JAVA_HOME Path
      Once the above steps are successfully completed , we need to set the "JAVA_HOME" and "PATH" environment variables. Enter the following commands to set your environment variables. Make sure that your environment variables point to a valid installation of JDK on your Fedora, Oracle & Redhat Linuxmachine.
      export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-deve1
      Add the JAVA bin directory to the PATH variable
      export PATH=$PATH:$JAVA_HOME/bin
      This will append the java bin directory to the existing PATH variable. You can also check the PATH variable by entering the following command
      Step #4: Verify
      Once the OpenJDK 8 Download and installation is complete, we can verify the installed OpenJDK 8 version using below Command.
      Go to Fedora, Oracle & Redhat Linux prompt and type java -version
      The above command prints the OpenJDK 8 version you installed.
      Java -version
      openjdk version "8" xxxx-xx-xx
      OpenJDK Runtime Environment xx.x (build xx+xx)
      OpenJDK 64-Bit Server VM (build 8+xx, mixed mode)
      Congratulations !!! Now you have installed OpenJDK 8 Successfully.
      Source: Google