From c0cc377c645a7d3ce1e59fb7632a35fdda650c2d Mon Sep 17 00:00:00 2001 From: sverrevh Date: Wed, 25 Nov 2020 22:19:02 +0100 Subject: [PATCH] Limit memory usage for burp collaborator Adding -Xmx200m as per: https://portswigger.net/burp/documentation/collaborator/deploying#installation-and-execution and https://portswigger.net/burp/documentation/desktop/getting-started/launching/command-line This limit max memory usage, especially necessary on small instances. Otherwise burp will use all available memory causing the system to become unresponsive. --- startcollab.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/startcollab.sh b/startcollab.sh index ce71037..d24651b 100755 --- a/startcollab.sh +++ b/startcollab.sh @@ -1,3 +1,3 @@ #!/bin/bash -/opt/BurpSuitePro/BurpSuitePro --collaborator-server --collaborator-config=/usr/local/collaborator/collaborator.config +/opt/BurpSuitePro/BurpSuitePro -Xmx200m --collaborator-server --collaborator-config=/usr/local/collaborator/collaborator.config