Skip to content

Instantly share code, notes, and snippets.

@nknskn
Last active August 29, 2015 14:12
Show Gist options
  • Save nknskn/51b12fcfe2e479e55f57 to your computer and use it in GitHub Desktop.
Save nknskn/51b12fcfe2e479e55f57 to your computer and use it in GitHub Desktop.
BurpSuite
#!/bin/sh
# 使用する JDK/JRE のカスタマイズ
# export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_21.jdk/Contents/Home
# export PATH=$JAVA_HOME/bin:$PATH
JAR_DIR=`dirname $0`
java -jar -Xdock:name="BurpSuite v1.6" -Xdock:icon=$JAR_DIR/../Resources/app.icns $JAR_DIR/burpsuite_free_v1.6.jar
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>BurpSuite_v1.6</string>
<key>CFBundleDisplayName</key>
<string>BurpSuite_v1.6</string>
<key>CFBundleExecutable</key>
<string>BurpSuite_v1.6.sh</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleIconFile</key>
<string>app.icns</string>
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment