Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Burpsuite crashing unexpectedly, a proof of concept bug fix #11

Open
MatyMatrix opened this issue Mar 22, 2025 · 1 comment
Open

Burpsuite crashing unexpectedly, a proof of concept bug fix #11

MatyMatrix opened this issue Mar 22, 2025 · 1 comment

Comments

@MatyMatrix
Copy link

Burp Suite was crashing when launched in a Docker container. The root cause appeared to be a required user interaction, which was triggered by using an outdated version of Burp. When the update interaction was prompted, the container would terminate prematurely due to the starting command exiting with a return code of 0.

Fix Implemented:
The last line of the Dockerfile was modified to:

CMD /opt/BurpSuiteCommunity/BurpSuiteCommunity
--user-config-file=/opt/BurpSuiteCommunity/user-options.json
--config-file=/opt/BurpSuiteCommunity/project-options.json && tail -f /dev/null

This change ensures that:

  1. Burp Suite starts correctly inside the container.

  2. The container does not terminate immediately when user interaction is required, as tail -f /dev/null captures the command flow indefinitely.

Final outcome:

With this fix, Burp Suite now successfully launches within the container. If user interaction is needed, the process continues running instead of terminating unexpectedly. This prevents the old "return 0" issue and ensures stability in the containerized environment.

Now Burp successfully launches in the container and if the old prolem arises, a prompt appears requiring user interaction:

Image

Clicking the button leads to a short loading time, then there is the following warning prompt:

Image

After clicking ok, Burp starts as expeceted.

@MatyMatrix
Copy link
Author

Given that no real fix has been pushed up to now, the later keycloak version will have to be modified accordingly to handle the macvlan driver in the right way. AKA allowing other commands before the startup of BURP!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant