Skip to content

Instantly share code, notes, and snippets.

@bl4de
Created July 7, 2017 22:43
Show Gist options
  • Save bl4de/ef91ac273ce018069d2b2972d28b32e8 to your computer and use it in GitHub Desktop.
Save bl4de/ef91ac273ce018069d2b2972d28b32e8 to your computer and use it in GitHub Desktop.
Running Burp Suite from command line with memory assigned as argument, eg: burp 2048
#!/bin/bash
memory=$1
cd ~/hacking/tools/burpsuite
echo "[+] Running Burp..."
java -jar -Xmx${memory}M -Djava.net.preferIPv4Stack=true burpsuite_free_*.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment