security/웹해킹

[Dreamhack Wargame] Carve Party

민사민서 2023. 6. 27. 22:38

콘솔창에서 js로 해결하는게 젤 간단하긴 하지만

파이썬 자동클릭 매크로를 만들어 풀어보았다

 

import pyautogui
import time

if __name__ == '__main__':
    width, height = pyautogui.size()
    print(width, height) # 2560 1440
    mouse_x, mouse_y = pyautogui.position()
    print(mouse_x, mouse_y) # python 파일 실행하는 순간 커서 위치

    time.sleep(3) # 딜레이
    pyautogui.click(x=width/2, y=height/2, button='left', clicks=9999, interval=0.0001)