From cae15e76366051a75ffd916415966e887bccf508 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 3 Jun 2025 08:28:34 +0000 Subject: [PATCH] auto burp part 1 --- Dockerfile | 17 ++++++++++++++--- burp/next_button.png | Bin 0 -> 526 bytes supervisord/burpsuite.sh | 14 ++++++++++++++ 3 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 burp/next_button.png diff --git a/Dockerfile b/Dockerfile index a839259..0671b66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ USER 0 RUN apt update RUN apt install -yq libssl-dev \ - curl \ + wget curl unzip \ openssl \ ca-certificates \ fontconfig \ @@ -15,8 +15,19 @@ RUN apt install -yq libssl-dev \ libxext6 \ libxrender1 \ libxtst6 \ - gnupg\ - supervisor + gnupg \ + 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 && \ curl -fsSL https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg && \ diff --git a/burp/next_button.png b/burp/next_button.png new file mode 100644 index 0000000000000000000000000000000000000000..bc58a4618059fe272f9c63447602d5938cb8b8b6 GIT binary patch literal 526 zcmV+p0`dKcP)NLx`9$A3>;M2)410Y7+!4pJ&KgDx84*QOAI7-}P>xR|UN z#0&xB2k~Qd&`1Oe4bed;PjC`jsuTys(1IE26st>`nrIRnbqR(SobD5YkpFb}bI(0L z4(A@Obn9&4*{ZDA0Gd>yFP@$^eYr@|$`L>;%IqhV<7ySZO(<7G?_a&;okcwTF{FV$ z7RBm%z?UQ}159kNxX;ukUGI@3fYCVuhcveVG`ABtWOO#ycwpryA3p`XvW)x&Q%9lS zF~~V(TZ2*}0ns z_!&l-_!+0?nM-&M};I;&o4 z8}TblY+&w3SppdLP*KU}Nv{91=A)t#$2h=NfOHbSBCvC$(jT*ED$y5DcY5A^A*t*a Q*#H0l07*qoM6N<$f{%>pQ~&?~ literal 0 HcmV?d00001 diff --git a/supervisord/burpsuite.sh b/supervisord/burpsuite.sh index e69de29..0ad2917 100644 --- a/supervisord/burpsuite.sh +++ b/supervisord/burpsuite.sh @@ -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