Skip to content

Instantly share code, notes, and snippets.

@thypon
Created May 23, 2021 15:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thypon/3671b10ca31048b34a524af1ef7caa8d to your computer and use it in GitHub Desktop.
Save thypon/3671b10ca31048b34a524af1ef7caa8d to your computer and use it in GitHub Desktop.
Run BURP Within Your JVM
#!/bin/sh
APP_PACKAGE="/Applications/Burp Suite Professional.app/"
exec java --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.desktop/javax.swing=ALL-UNNAMED -Dinstall4j.launcherId=70 -Dinstall4j.swt=false -Dexe4j.moduleName="$APP_PACKAGE" -Dfile.encoding=UTF-8 -cp "$APP_PACKAGE/Contents/Resources/app/.install4j/i4jruntime.jar:$APP_PACKAGE/Contents/java/app/burpsuite_pro.jar" -Duser.dir="$APP_PACKAGE/Contents/Resources/app/./." com.install4j.runtime.launcher.MacLauncher
@thypon
Copy link
Author

thypon commented Dec 9, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment