"failsave" burp script

This commit is contained in:
Simon
2025-06-19 11:15:56 +00:00
parent 6405cbb269
commit 23f6df62f0

View File

@@ -64,24 +64,18 @@ while True:
pyautogui.click(button)
button = None
try:
button = pyautogui.locateCenterOnScreen("/app/burp/http_history.png", confidence=0.8)
except:
pass
if button:
print("Clicking on the 'HTTP History' button...")
pyautogui.click(button)
time.sleep(2)
try:
button = pyautogui.locateCenterOnScreen("/app/burp/sort.png", confidence=0.8)
except:
pass
if button:
print("Clicking on the 'Sorting' button...")
pyautogui.click(button)
# time.sleep(60*60*24)
# burp_process.terminate()
# print("Starting Burp Suite...")
# burp_process = start_burp()
try:
button = pyautogui.locateCenterOnScreen("/app/burp/http_history.png", confidence=0.8)
except:
pass
if button:
print("Clicking on the 'HTTP History' button...")
pyautogui.click(button)
button = None
try:
button = pyautogui.locateCenterOnScreen("/app/burp/sort.png", confidence=0.8)
except:
pass
if button:
print("Clicking on the 'Sorting' button...")
pyautogui.click(button)