"failsave" burp script
This commit is contained in:
@@ -64,24 +64,18 @@ while True:
|
|||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
button = None
|
button = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
button = pyautogui.locateCenterOnScreen("/app/burp/http_history.png", confidence=0.8)
|
button = pyautogui.locateCenterOnScreen("/app/burp/http_history.png", confidence=0.8)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
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)
|
button = None
|
||||||
try:
|
try:
|
||||||
button = pyautogui.locateCenterOnScreen("/app/burp/sort.png", confidence=0.8)
|
button = pyautogui.locateCenterOnScreen("/app/burp/sort.png", confidence=0.8)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
if button:
|
if button:
|
||||||
print("Clicking on the 'Sorting' button...")
|
print("Clicking on the 'Sorting' button...")
|
||||||
pyautogui.click(button)
|
pyautogui.click(button)
|
||||||
|
|
||||||
# time.sleep(60*60*24)
|
|
||||||
# burp_process.terminate()
|
|
||||||
# print("Starting Burp Suite...")
|
|
||||||
# burp_process = start_burp()
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user