sort burp view

This commit is contained in:
Simon
2025-06-04 18:52:35 +00:00
parent cb03417f5f
commit d837028faf
2 changed files with 9 additions and 0 deletions

BIN
burp/sort.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B

View File

@@ -64,6 +64,15 @@ while True:
if button: if button:
print("Clicking on the 'HTTP History' button...") print("Clicking on the 'HTTP History' button...")
pyautogui.click(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) time.sleep(60*60*24)
burp_process.terminate() burp_process.terminate()
print("Starting Burp Suite...") print("Starting Burp Suite...")