Burp web security tool in a container.
317
Burp web security tool in a container.
docker run \
--name burp \
--rm -it \
-e DISPLAY=$DISPLAY \
-e XAUTHORITY=$XAUTHORITY \
-v /run/user/1000/gdm/Xauthority:$XAUTHORITY \
-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
--net host \
-p 8080:8080 \
pamplemousse/burp
It's also possible to catch inter-containers communications as long as the burp container is connected to the network you want to listen too.
# let's create a custom network
docker network create --driver=bridge my_network
# docker-compose.yml
services:
client:
# some config
networks: my_network
server:
# some config
networks: my_network
networks:
my_network:
external: true
# then the burp container joins this network
# using the "--net" option
docker run \
--name burp \
--rm -it \
-e DISPLAY=:1 \
-e XAUTHORITY=/run/user/1000/gdm/Xauthority \
-v /run/user/1000/gdm/Xauthority:/run/user/1000/gdm/Xauthority \
-v /tmp/.X11-unix:/tmp/.X11-unix:ro \
--net my_network \
-p 8080:8080 \
pamplemousse/burp
Content type
Image
Digest
Size
121.1 MB
Last updated
over 5 years ago
docker pull pamplemousse/burp