Installing burpsuite from .sh file (download from official website) and got error.
What have you tried:
I have tried all the java version and still got that error
What is the error:
What device is this on:
Mac Mini M4 (base model)
Installing burpsuite from .sh file (download from official website) and got error.
What have you tried:
I have tried all the java version and still got that error
What is the error:
What device is this on:
Mac Mini M4 (base model)
getting the same SIGILL error. Did a fresh install of the latest Kali ARM64 iso, java -version gives same error. So it’s an issue between arm64 architecture and java? anyone know how to fix so I can install burp (which isn’t installed by default for some reason)
Now it’s work on burpsuite community (kali repo) but still got an error on burpsutie pro
I finally found a working solution for installing Burp Suite Professional on Kali Linux ARM. The problem was caused by the bundled JRE being incompatible with ARM64, which led to a SIGILL error. I initially tried modifying the installer script, but that resulted in a checksum error (“sfx_archive.tar.gz: not in gzip format”). Ultimately, I solved the issue by forcing the installer to use my system’s Java 21 without modifying the installer file directly. I achieved this by setting the following environment variables before running the installer:
export INSTALL4J_DISABLE_BUNDLED_JRE=true
export INSTALL4J_JAVA_HOME_OVERRIDE=/usr/lib/jvm/java-21-openjdk-arm64
./burpsuite_pro_linux_arm64_v2025_1_5.sh
This approach successfully bypassed the bundled JRE and used the compatible Java 21 instead. I’m sharing this troubleshooting process in hopes it helps others facing the same problem.
ありがとうございます。
おかげで解決できました。
Thank you so much.
I solveed tihs problem.