我从昨天开始使用Manjaro,我试着安装burpsuite社区版。
但是,当我执行安装程序脚本时,会抛出一个错误。
Unpacking JRE ...
Starting Installer ...
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f85c869c12c, pid=72124, tid=72125
#
# JRE version: OpenJDK Runtime Environment (16.0.2+7) (build 16.0.2+7-67)
# Java VM: OpenJDK 64-Bit Server VM (16.0.2+7-67, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64)
# Problematic frame:
# C 0x00007f85c869c12c
#
# Core dump will be written. Default location: Core dumps may be processed with "/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h" (or dumping to /home/max/Downloads/burpsuite_community_linux_v2021_10_3.sh.72088.dir/core.72124)
#
# An error report file with more information is saved as:
# /home/max/Downloads/burpsuite_community_linux_v2021_10_3.sh.72088.dir/hs_err_pid72124.log
#
# If you would like to submit a bug report, please visit:
# https://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
./burpsuite_community_linux_v2021_10_3.sh: line 621: 72124 Aborted (core dumped) $INSTALL4J_JAVA_PREFIX "$app_java_home/bin/java" -Dexe4j.moduleName="$prg_dir/$progname" -Dexe4j.totalDataLength=229190794 -Dinstall4j.cwd="$old_pwd" "--add-opens" "java.desktop/java.awt=ALL-UNNAMED" $INSTALL4J_ADD_VM_PARAMS -classpath "$local_classpath" install4j.Installer3680162217 "$@"我的Java版本是
openjdk version "17.0.1" 2021-10-19
OpenJDK Runtime Environment (build 17.0.1+12)
OpenJDK 64-Bit Server VM (build 17.0.1+12, mixed mode)有人知道解决这个问题的办法吗?
发布于 2022-04-06 12:08:03
根据这个链接,运行jar文件而不是安装程序似乎很好。
根据这个错误:
To run Burp Suite using Java 17+, please supply the following JVM argument:
--add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED 如果使用Java,运行jar文件的命令如下所示:
java --add-opens=java.desktop/javax.swing=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED -jar ~/Downloads/burpsuite_community_v2022.2.4.jarhttps://stackoverflow.com/questions/70316146
复制相似问题