auto burp part 1
This commit is contained in:
17
Dockerfile
17
Dockerfile
@@ -7,7 +7,7 @@ USER 0
|
|||||||
|
|
||||||
RUN apt update
|
RUN apt update
|
||||||
RUN apt install -yq libssl-dev \
|
RUN apt install -yq libssl-dev \
|
||||||
curl \
|
wget curl unzip \
|
||||||
openssl \
|
openssl \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
fontconfig \
|
fontconfig \
|
||||||
@@ -15,8 +15,19 @@ RUN apt install -yq libssl-dev \
|
|||||||
libxext6 \
|
libxext6 \
|
||||||
libxrender1 \
|
libxrender1 \
|
||||||
libxtst6 \
|
libxtst6 \
|
||||||
gnupg\
|
gnupg \
|
||||||
supervisor
|
supervisor \
|
||||||
|
python3 python3-pip \
|
||||||
|
scrot python3-tk python3-dev \
|
||||||
|
libx11-6 libx11-dev libxext-dev libxtst6 \
|
||||||
|
libpng-dev libjpeg-dev libtiff-dev libfreetype6-dev \
|
||||||
|
x11-xserver-utils \
|
||||||
|
xserver-xorg \
|
||||||
|
fluxbox \
|
||||||
|
xvfb \
|
||||||
|
&& apt-get clean
|
||||||
|
|
||||||
|
RUN pip3 install pyautogui pillow opencv-python
|
||||||
|
|
||||||
RUN mkdir -p /usr/share/man/man1 && \
|
RUN mkdir -p /usr/share/man/man1 && \
|
||||||
curl -fsSL https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg && \
|
curl -fsSL https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg && \
|
||||||
|
|||||||
BIN
burp/next_button.png
Normal file
BIN
burp/next_button.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 526 B |
@@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
export DISPLAY=:1.0
|
||||||
|
sleep 2
|
||||||
|
|
||||||
|
|
||||||
|
# Launch Burp Suite
|
||||||
|
java -jar /home/default/burpsuite_community.jar
|
||||||
|
|
||||||
|
# Give it time to start up
|
||||||
|
sleep 10
|
||||||
|
|
||||||
|
# Run your Python script to click "Next"
|
||||||
|
python3 /workspace/auto_click_next.py
|
||||||
|
|||||||
Reference in New Issue
Block a user