jam 블로그

[Hackthissite Javascript] level 3 본문

해킹/웹해킹

[Hackthissite Javascript] level 3

kid1412 2010. 9. 26. 13:45
728x90
해설과 답은 마우스로 글을 긁으면 보여요..

Math time!

faith is going to test your math skills and your javascript operations
=> 수학 시간!
    faith
수학 실력과 자바 스크립트 작업을 테스트하려 합니다.

풀이 :
다음과 같이 소스가 있다. 그냥 손으로 moo의 값을 구하면 된다.

var foo = 5 + 6 * 7
var bar = foo % 8
var moo = bar * 2
var rar = moo / 3
function check(x)
{
        if (x.length == moo)
        {
                        alert("win!");
                        window.location += "?lvl_password="+x;
        } else {
                        alert("fail D:");
     }
}

아니면 다음과 같이 html 풀소스로 변경 후에 실행을 시켜보자

<HTML>
 <BODY>
 <script>
var foo = 5 + 6 * 7
var bar = foo % 8
var moo = bar * 2
var rar = moo / 3
document.write(moo);
function check(x)
{
        if (x.length == moo)
        {
                        alert("win!");
                        window.location += "?lvl_password="+x;
        } else {
                        alert("fail D:");
     }
}
</script>
 </BODY>
</HTML>

moo의 값은 14가 나온다. 이제 빈칸에 14를 넣는것이 아닌 length이기 때문에 어떤한 문자의 14글자만 넣으면 된다.

'해킹 > 웹해킹' 카테고리의 다른 글

[Hackthissite Javascript] level 5  (0) 2010.09.26
[Hackthissite Javascript] level 4  (0) 2010.09.26
[Hackthissite Javascript] level 2  (0) 2010.09.26
[Hackthissite Javascript] level 1  (0) 2010.09.26
[웹해킹] OWASP 2004~2010 비교표  (0) 2010.08.12
Comments