Old-10 Domain & Tool
- 구분 : value 수정
- 문제풀이에 사용된 도구
- Chrome 103.0.5060.66 관리도구[F12]
Old-10 Question & Answer
문제페이지에 들어가면 O라는 문자가 있고 저~ 멀리에 황금색으로 Goal이라는 결승선이 있다. Mouse를 올려보면(hover)
자신의 말은 이런식으로 변한다. 이번에는 클릭해보면 약간 아주 약간 오른쪽으로 이동한다. 즉 이거를 goal까지로 옮기는 문제인데, 코드를 확인해보자
<html>
<head>
<title>Challenge 10</title>
</head>
<body>
<hr style=height:100;background:brown;>
<table border=0 width=1800 style=background:gray>
<tr><td>
<a id=hackme style="position:relative;left:0;top:0"
onclick="this.style.left=parseInt(this.style.left,10)+1+'px';
if(this.style.left=='1600px')this.href='?go='+this.style.left"
onmouseover=this.innerHTML='yOu' onmouseout=this.innerHTML='O'>O</a><br>
<font style="position:relative;left:1600;top:0" color=gold>|<br>|<br>|<br>|<br>Goal</font>
</td></tr>
</table>
<hr style=height:100;background:brown;>
</body>
</html>
저기 Goal은 상대위치로 1600px만큼 떨어져 있는거 같다. id=hackme의 a태그의 position의 left를 1599px로 바꾸고 한번만 클릭하자
이런식으로 말이다
'WarGame > Webhacking.kr' 카테고리의 다른 글
[Webhacking.kr] old-12 Answer (0) | 2022.07.15 |
---|---|
[Webhacking.kr] old-11 Answer (0) | 2022.07.14 |
[Webhacking.kr] old-09 Answer (0) | 2022.07.14 |
[Webhacking.kr] old-08 Answer (0) | 2022.07.10 |
[Webhacking.kr] old-07 Answer (0) | 2022.07.10 |