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 |
Tags
- 러닝스칼라
- flask
- hacking
- BOF
- Scala
- 웹해킹
- 딥러닝
- 경제
- Javascript
- 챗GPT
- BOF 원정대
- 러닝 스칼라
- Linux
- deep learning
- Python
- c++
- mysql
- 파이썬
- 백엔드
- 인공지능
- hackerschool
- c
- 리눅스
- backend
- Shellcode
- Web
- hackthissite
- ChatGPT
- webhacking
- php
Archives
- Today
- Total
jam 블로그
[Hackthissite Javascript] level 5 본문
728x90
해설과 답은 마우스로 글을 긁으면 보여요..
Uhm, faith spelled runescape wrong?
=> 흠. Faith는 runescape 철자가 잘못되었는가?
풀이 :
소스 보기를 하여서 스크립트를 찾아보자
<script language="Javascript">
moo = unescape('%69%6C%6F%76%65%6D%6F%6F');
function check (x) {
if (x == moo)
{
alert("Ahh.. so that's what she means");
window.location = "../../../missions/javascript/5/?lvl_password="+x;
}
else {
alert("Nope... try again!");
}
}
</script>
스크립트를 보면 moo의 값을 찾으면 될꺼 같다. unescape는 urldecoding 해주는 함수이다.
소스를 다음과 같이 바꾸어서 실행해보자
<HTML>
<BODY>
<script language="Javascript">
moo = unescape('%69%6C%6F%76%65%6D%6F%6F');
document.write(moo);
function check (x) {
if (x == moo)
{
alert("Ahh.. so that's what she means");
window.location = "../../../missions/javascript/5/?lvl_password="+x;
}
else {
alert("Nope... try again!");
}
}
</script>
</BODY>
</HTML>
moo는 ilovemoo 이다. 답이 ilovemoo이다.
Uhm, faith spelled runescape wrong?
=> 흠. Faith는 runescape 철자가 잘못되었는가?
풀이 :
소스 보기를 하여서 스크립트를 찾아보자
<script language="Javascript">
moo = unescape('%69%6C%6F%76%65%6D%6F%6F');
function check (x) {
if (x == moo)
{
alert("Ahh.. so that's what she means");
window.location = "../../../missions/javascript/5/?lvl_password="+x;
}
else {
alert("Nope... try again!");
}
}
</script>
스크립트를 보면 moo의 값을 찾으면 될꺼 같다. unescape는 urldecoding 해주는 함수이다.
소스를 다음과 같이 바꾸어서 실행해보자
<HTML>
<BODY>
<script language="Javascript">
moo = unescape('%69%6C%6F%76%65%6D%6F%6F');
document.write(moo);
function check (x) {
if (x == moo)
{
alert("Ahh.. so that's what she means");
window.location = "../../../missions/javascript/5/?lvl_password="+x;
}
else {
alert("Nope... try again!");
}
}
</script>
</BODY>
</HTML>
moo는 ilovemoo 이다. 답이 ilovemoo이다.
'해킹 > 웹해킹' 카테고리의 다른 글
[Hackthissite Javascript] level 7 (0) | 2010.09.26 |
---|---|
[Hackthissite Javascript] level 6 (0) | 2010.09.26 |
[Hackthissite Javascript] level 4 (0) | 2010.09.26 |
[Hackthissite Javascript] level 3 (0) | 2010.09.26 |
[Hackthissite Javascript] level 2 (0) | 2010.09.26 |
Comments