Skip to content

Commit

Permalink
add files
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1t3Fox committed Aug 5, 2020
0 parents commit ee7f46d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
from ubuntu:bionic

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update && \
apt-get -y upgrade && \
apt-get install -y \
locales \
locales-all \
openjdk-11-jre \
openjdk-11-jdk \
curl \
ca-certificates \
--no-install-recommends && \
rm -fr /var/lib/apt/lists/* && \
locale-gen en_US.UTF-8 && \
echo 'LANG=en_US.UTF-8' > /etc/locale.conf && \
useradd -m -s /bin/bash user

USER user
WORKDIR /home/user

RUN \
export VERSION=$(curl -qsSL https://portswigger.net/burp/releases/community/latest 2>/dev/null | grep -Po -m 1 '(?<=version=)[^&]+' | tr -d '\n') && \
curl -SL -o "burp.jar" "https://portswigger.net/burp/releases/download\?product\=community\&version\=${VERSION}\&type\=Jar"

ENV LC_ALL=en_US.UTF-8
ENV LC_CTYPE=en_US.UTF-8
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US.UTF-8

CMD ["java", "-jar", "burp.jar"]
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# burpsuite
docker burpsuite

```
docker run --rm -dit -e DISPLAY=$DISPLAY -v /tmp/.X11-unix/:/tmp/.X11-unix/ --name burpsuite retenet/burpsuite
```

0 comments on commit ee7f46d

Please sign in to comment.