Package Details: burpsuite 2024.4-1

Git Clone URL: https://aur.archlinux.org/burpsuite.git (read-only, click to copy)
Package Base: burpsuite
Description: An integrated platform for performing security testing of web applications (free edition)
Upstream URL: https://portswigger.net/burp/
Licenses: custom
Submitter: daronin
Maintainer: tux268 (dkasak, AkechiShiro)
Last Packager: tux268
Votes: 116
Popularity: 0.32
First Submitted: 2008-02-14 18:49 (UTC)
Last Updated: 2024-04-30 10:59 (UTC)

Dependencies (1)

Required by (1)

Sources (4)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 10 Next › Last »

mostwantedduck commented on 2022-04-11 16:47 (UTC)

@tux268 I don't think it was your change... I tried without the option and with all those other flags. I start imagine that is something related to my hypervisor (proxmox) somehow.

tux268 commented on 2022-04-11 08:46 (UTC) (edited on 2022-04-11 09:12 (UTC) by tux268)

@mostwantedduck It might be linked to a change I recently made in the PKGBUILD to switch to JDK17. I'm going to look into it and fix this issue ASAP. Thanks for letting me know

EDIT : I have removed the --illegal-access=permit flag and added --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.desktop/javax.swing=ALL-UNNAMED as suggested by Burp.

mostwantedduck commented on 2022-04-08 20:50 (UTC) (edited on 2022-04-10 17:38 (UTC) by mostwantedduck)

Recently I start having problem to run burpsuite... Tried to use other jdks but nothing worked.

That is what I have. It's a VM running on proxmox (not sure if it's relevant):

[mwd@manjaro-xfce jvm]$ sudo archlinux-java status
Available Java environments:
  java-11-openjdk
  java-17-openjdk (default)
  jdk-14
  jdk-17.0.2

[mwd@manjaro-xfce jvm]$ java -version
openjdk version "17.0.3" 2022-04-19
OpenJDK Runtime Environment (build 17.0.3+3)
OpenJDK 64-Bit Server VM (build 17.0.3+3, mixed mode)

[mwd@manjaro-xfce jvm]$ burpsuite
OpenJDK 64-Bit Server VM warning: Ignoring option --illegal-access=permit; support was removed in 17.0
Could not start Burp: java.lang.NullPointerException

[mwd@manjaro-xfce jvm]$ cat /usr/bin/burpsuite
#!/bin/sh

exec $JAVA_HOME/bin/java --illegal-access=permit -jar /usr/share/burpsuite/burpsuite.jar $@

Posted a video with the error if anyone is interested... https://www.youtube.com/watch?v=cUy_zgtmrpM

sukrosono commented on 2022-02-06 15:51 (UTC)

don't remove the flag --illegal-access=permit, just read the wiki

Kr1ss commented on 2021-11-04 17:50 (UTC)

@dkasak @tux268 - Pls disregard my out-of-date flag for now. I missed that this version has been released to the early-adopter channel only.

Sorry for the noise.

tux268 commented on 2021-08-11 09:26 (UTC)

@berrabe I haven't been able to reproduce this error. The link seems to work fine for me. Do you have any more input, so I can try to reproduce this ?

berrabe commented on 2021-08-09 02:14 (UTC) (edited on 2021-08-09 02:17 (UTC) by berrabe)

i've error HTTP 503 When Download Jar Binary Package on https://portswigger.net/burp/releases/download?product=community&version=2021.8&type=Jar

Update : I've checked the error from website itself

LiHua commented on 2021-06-26 02:26 (UTC)

@tux268 I was using java-16-openjdk.

tux268 commented on 2021-06-25 21:28 (UTC)

@LiHua Thanks for the suggestion, I was using java-11-openjdk, so I did not notice the issue. I did as you suggested.

LiHua commented on 2021-06-25 17:33 (UTC) (edited on 2021-06-26 02:35 (UTC) by LiHua)

@dkasak @tux268 Change echo "exec \$JAVA_HOME/bin/java -jar /usr/share/burpsuite/burpsuite.jar \$@" >> ${pkgdir}/usr/bin/${pkgname} in PKGBUILD to echo " exec \$JAVA_HOME/bin/java --illegal-access=permit -jar ${pkgdir}/usr/share/burpsuite/burpsuite.jar \$@" >> ${pkgdir}/usr/bin/${pkgname} can fix JDK high version Warning.