Files
hottub/burp/start_burp.sh
2025-06-03 10:09:27 +00:00

13 lines
334 B
Bash

import pyautogui
import time
print("Waiting for Burp window...")
time.sleep(10)
button = pyautogui.locateCenterOnScreen("/app/burp/next_button.png", confidence=0.8)
if button:
print("Clicking on the 'Next' button...")
pyautogui.click(button)
else:
print("Failed to find the 'Next' button. Try updating the screenshot.")