Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marco-lancini/docker_burp
Burp as a Docker Container
https://github.com/marco-lancini/docker_burp
burp burpsuite docker docker-compose
Last synced: 2 months ago
JSON representation
Burp as a Docker Container
- Host: GitHub
- URL: https://github.com/marco-lancini/docker_burp
- Owner: marco-lancini
- Created: 2018-02-03T17:16:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-21T17:10:37.000Z (over 4 years ago)
- Last Synced: 2024-10-14T07:42:37.531Z (3 months ago)
- Topics: burp, burpsuite, docker, docker-compose
- Language: Dockerfile
- Homepage: https://www.marcolancini.it/2018/blog-docker-burp/
- Size: 11.7 KB
- Stars: 59
- Watchers: 6
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Burp as a Docker Container
How to run any GUI application (and Burp in particular) from Docker.
A full description can be found on my website: https://www.marcolancini.it/2018/blog-docker-burp/
![Burp in Docker](https://www.marcolancini.it/images/posts/blog_docker_burp_3.jpg)
## Usage
1. Place the Burp (Professional or Free) JAR file and the licence key in the `_data/sources` folder
2. Export the local IP address: `export LOCAL_IP=$(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}')`
3. Create an environment file:
* Copy the template: `cp burp.env.tpl burp.env`
* A possible configuration is the following:
```
DISPLAY=${LOCAL_IP}:0
ENV_MEM_JVM=2048m
ENV_BURP_PRO=0 # 1 for Burp Pro, 0 for Free version
```
4. Start services: `docker-compose up`