일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 배열
- htmlspecialchars
- window
- 메소드
- blind sql injection
- lord of sql injection
- document
- 백준 파이썬
- 사칙연산
- 김성엽 대표님
- burp suite
- element 조회
- python
- github
- Pwndbg
- 자바스크립트
- suninatas 풀이
- object
- jQuery
- xss game 풀이
- 함수
- 파이썬
- 백준 알고리즘
- property
- 포인터
- 조건문
- xss game
- 객체
- sql injection
- IF문
Archives
- Today
- Total
power-girl0-0
[webhacking.kr-old] 12번 본문
728x90
주소 : https://webhacking.kr/old.php
[ 풀이 ]
자바스크립트 문제인 듯하다. ㅎ_ㅎ
개발자도구를 이용해서 자바스크립트 코드가 있는지 확인해보자.
귀여운 표정들의 코드가 들어있는 것을 확인할 수 있다.
처음에는 개발자도구의 콘솔창에 해당 코드를 넣었지만, 에러가 출력된다 ㅠ_ㅠ
그래서, 난독화 사이트를 찾아보던 중 해당 문제는 aaencode문제임을 발견할 수 있었다.
해당 문제는 aaencode문제이다.
본 글 작성자는 아래 주소를 통해서, 난독화를 풀었다!
https://cat-in-136.github.io/2010/12/aadecode-decode-encoded-as-aaencode.html
그 결과, 아래와 같은 코드를 추출해주었다.
var enco=''; var enco2=126; var enco3=33; var ck=document.URL.substr(document.URL.indexOf('=')); for(i=1;i<122;i++){ enco=enco+String.fromCharCode(i,0); } function enco_(x){ return enco.charCodeAt(x); } if(ck=="="+String.fromCharCode(enco_(240))+String.fromCharCode(enco_(220))+String.fromCharCode(enco_(232))+String.fromCharCode(enco_(192))+String.fromCharCode(enco_(226))+String.fromCharCode(enco_(200))+String.fromCharCode(enco_(204))+String.fromCharCode(enco_(222-2))+String.fromCharCode(enco_(198))+"~~~~~~"+String.fromCharCode(enco2)+String.fromCharCode(enco3)){ location.href="./"+ck.replace("=","")+".php"; }
위 코드를 분석해보면, ck변수가 어떠한 조건에 맞으면 해당 페이지로 이동하도록 작성되어 있는 것을 확인할 수 있다.
해당 조건문을 콘솔창에 넣어본 결과, youaregod~~~~~~~!라는 문자열을 추출할 수 있었다.
위에서 구한 문자열을 해당 url과 같이 넘겨주어보자.
?=youaregod~~~~~~~! |
문제 클리어 ~_~
728x90
'War game > webhacking.kr' 카테고리의 다른 글
[webhacking.kr - old] 15번 (0) | 2021.06.22 |
---|---|
[webhacking.kr - old] 14번 (0) | 2021.06.22 |
[webhacking.kr-old] 11번 (0) | 2021.06.22 |
[webhacking.kr-old] 10번 (0) | 2021.06.21 |
[webhacking.kr-old] 9번 (0) | 2021.06.20 |
Comments